Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateDivisionsMigration (1)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "divisions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "name" varchar(50) NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')  (0.9ms) commit transaction Migrating to CreateDraftsMigration (2)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "drafts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "player_id" integer, "team_id" integer, "date" date, "round" integer, "pick" integer, "overall" integer, "college" varchar(100), "notes" text)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('2')  (0.9ms) commit transaction Migrating to CreateLeaguesMigration (3)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "leagues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "name" varchar(50) NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('3')  (0.8ms) commit transaction Migrating to CreatePlayersMigration (4)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "players" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "team_id" integer, "name" varchar(100) NOT NULL, "position" varchar(50), "number" integer NOT NULL, "retired" boolean DEFAULT 'f', "injured" boolean DEFAULT 'f', "born_on" date, "notes" text)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('4')  (0.9ms) commit transaction Migrating to CreateTeamsMigration (5)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "teams" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "division_id" integer, "name" varchar(50), "logo_url" varchar(255), "manager" varchar(100) NOT NULL, "ballpark" varchar(100), "mascot" varchar(100), "founded" integer, "wins" integer, "losses" integer, "win_percentage" float)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('5')  (0.8ms) commit transaction Migrating to DeviseCreateUsers (6)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "password_salt" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('6')  (0.8ms) commit transaction Migrating to CreateHistoriesTable (7)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "message" varchar(255), "username" varchar(255), "item" integer, "table" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("histories")  (0.1ms) CREATE INDEX "index_histories_on_item_and_table" ON "histories" ("item", "table")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('7')  (0.7ms) commit transaction Migrating to CreateFansMigration (8)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "fans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "name" varchar(100) NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('8')  (0.8ms) commit transaction Migrating to CreateFansTeamsMigration (9)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "fans_teams" ("fan_id" integer, "team_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('9')  (0.9ms) commit transaction Migrating to AddRevenueToTeamMigration (10)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "teams" ADD "revenue" decimal(18,2)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('10')  (0.8ms) commit transaction Migrating to AddSuspendedToPlayerMigration (11)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "players" ADD "suspended" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('11')  (0.9ms) commit transaction Migrating to AddAvatarColumnsToUser (12)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "users" ADD "avatar_file_name" varchar(255)  (0.2ms) ALTER TABLE "users" ADD "avatar_content_type" varchar(255)  (0.1ms) ALTER TABLE "users" ADD "avatar_file_size" integer  (0.1ms) ALTER TABLE "users" ADD "avatar_updated_at" datetime  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('12')  (0.6ms) commit transaction Migrating to AddRolesToUser (13)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "users" ADD "roles" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('13')  (0.8ms) commit transaction Migrating to AddColorToTeamMigration (14)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "teams" ADD "color" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('14')  (0.8ms) commit transaction Migrating to CreateRelTests (20101223222233)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "rel_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "league_id" integer, "division_id" integer NOT NULL, "player_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101223222233')  (0.8ms) commit transaction Migrating to CreateComments (20110103205808)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "commentable_id" integer, "commentable_type" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110103205808')  (0.9ms) commit transaction Migrating to RenameHistoriesToRailsAdminHistories (20110123042530)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "histories" RENAME TO "rails_admin_histories"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110123042530')  (0.8ms) commit transaction Migrating to CreateFieldTests (20110224184303)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "field_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "string_field" varchar(255), "text_field" text, "integer_field" integer, "float_field" float, "decimal_field" decimal, "datetime_field" datetime, "timestamp_field" datetime, "time_field" time, "date_field" date, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110224184303')  (0.9ms) commit transaction Migrating to CreateCmsBasicPages (20110328193014)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "cms_basic_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110328193014')  (0.9ms) commit transaction Migrating to RemoveLeagueIdFromTeams (20110329183136)  (0.0ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "altered_teams" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "division_id" integer, "name" varchar(50), "logo_url" varchar(255), "manager" varchar(100) NOT NULL, "ballpark" varchar(100), "mascot" varchar(100), "founded" integer, "wins" integer, "losses" integer, "win_percentage" float, "revenue" decimal(18,2), "color" varchar(255))   (0.0ms) PRAGMA index_list("teams")  (0.1ms) SELECT * FROM "teams"  (0.2ms) DROP TABLE "teams"  (0.1ms) CREATE TABLE "teams" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "division_id" integer, "name" varchar(50), "logo_url" varchar(255), "manager" varchar(100) NOT NULL, "ballpark" varchar(100), "mascot" varchar(100), "founded" integer, "wins" integer, "losses" integer, "win_percentage" float, "revenue" decimal(18,2), "color" varchar(255))   (0.0ms) PRAGMA index_list("altered_teams")  (0.0ms) SELECT * FROM "altered_teams"  (0.2ms) DROP TABLE "altered_teams"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110329183136')  (1.0ms) commit transaction Migrating to AddFormatToFieldTest (20110607152842)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "field_tests" ADD "format" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110607152842')  (0.6ms) commit transaction Migrating to CreateBalls (20110714095433)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "balls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "color" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110714095433')  (0.9ms) commit transaction Migrating to AddProtectedFieldAndRestrictedFieldToFieldTests (20110831090841)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "field_tests" ADD "restricted_field" varchar(255)  (0.1ms) ALTER TABLE "field_tests" ADD "protected_field" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110831090841')  (0.9ms) commit transaction Migrating to ChangeDivisionPrimaryKey (20110901131551)  (0.0ms) begin transaction  (0.2ms) DROP TABLE "divisions"  (0.1ms) CREATE TABLE "divisions" ("custom_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "name" varchar(50) NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901131551')  (1.0ms) commit transaction Migrating to RenameLeagueIdForeignKeyOnDivisions (20110901142530)  (0.0ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "altered_divisions" ("custom_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "custom_league_id" integer, "name" varchar(50) NOT NULL)  (0.0ms) PRAGMA index_list("divisions")  (0.1ms) SELECT * FROM "divisions"  (0.2ms) DROP TABLE "divisions"  (0.1ms) CREATE TABLE "divisions" ("custom_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "custom_league_id" integer, "name" varchar(50) NOT NULL)  (0.0ms) PRAGMA index_list("altered_divisions")  (0.0ms) SELECT * FROM "altered_divisions"  (0.1ms) DROP TABLE "altered_divisions"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901142530')  (1.0ms) commit transaction Migrating to SetPrimaryKeyNotNullForDivisions (20110901150912)  (0.0ms) begin transaction  (0.2ms) DROP TABLE "divisions"  (0.1ms) CREATE TABLE "divisions" ("created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "custom_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "custom_league_id" integer, "name" varchar(50) NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901150912')  (0.9ms) commit transaction Migrating to ChangeLengthForRailsAdminHistories (20110901154834)  (0.0ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "altered_rails_admin_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "message" varchar(255), "username" varchar(255), "item" integer, "table" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("rails_admin_histories")  (0.0ms) PRAGMA index_info('index_histories_on_item_and_table')  (0.0ms) PRAGMA index_list("altered_rails_admin_histories")  (0.1ms) CREATE INDEX "temp_index_histories_on_item_and_table" ON "altered_rails_admin_histories" ("item", "table")  (0.1ms) SELECT * FROM "rails_admin_histories"  (0.2ms) DROP TABLE "rails_admin_histories"  (0.1ms) CREATE TABLE "rails_admin_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "message" text(255), "username" varchar(255), "item" integer, "table" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("altered_rails_admin_histories")  (0.0ms) PRAGMA index_info('temp_index_histories_on_item_and_table')  (0.0ms) PRAGMA index_list("rails_admin_histories")  (0.1ms) CREATE INDEX "index_histories_on_item_and_table" ON "rails_admin_histories" ("item", "table")  (0.0ms) SELECT * FROM "altered_rails_admin_histories"  (0.1ms) DROP TABLE "altered_rails_admin_histories"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901154834')  (0.9ms) commit transaction Migrating to CreateUnscopedPages (20111103174459)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "unscoped_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111103174459')  (0.8ms) commit transaction Migrating to AddDragonflyAndCarrierwaveToFieldTests (20111108143642)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "field_tests" ADD "paperclip_asset_file_name" varchar(255)  (0.1ms) ALTER TABLE "field_tests" ADD "dragonfly_asset_uid" varchar(255)  (0.1ms) ALTER TABLE "field_tests" ADD "carrierwave_asset" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108143642')  (0.6ms) commit transaction Migrating to AddTypeToBalls (20111115041025)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "balls" ADD "type" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111115041025')  (1.0ms) commit transaction Migrating to CreateNestedFieldTests (20111123092549)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "nested_field_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "field_test_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111123092549')  (1.0ms) commit transaction Migrating to AddDragonflyAssetNameToFieldTests (20111130075338)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "field_tests" ADD "dragonfly_asset_name" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111130075338')  (0.9ms) commit transaction Migrating to CreateFooBars (20111215083258)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "foo_bars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111215083258')  (0.8ms) commit transaction Migrating to AddCustomFieldToTeams (20120117151733)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "teams" ADD "custom_field" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120117151733')  (0.9ms) commit transaction Migrating to AddCategories (20120118122004)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_category_id" integer)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120118122004')  (0.8ms) commit transaction Migrating to DropRelTests (20120319041705)  (0.0ms) begin transaction  (0.2ms) DROP TABLE "rel_tests"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120319041705')  (0.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:01 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:01.215946', "current_sign_in_at" = '2012-06-29 19:08:01.215946', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:01.216589', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.0ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.0ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (2.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/dashboard.html.haml within layouts/rails_admin/application (79.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/pjax.html.haml (4.0ms) Completed 200 OK in 384ms (Views: 110.6ms | ActiveRecord: 3.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:01 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:01.805262', "current_sign_in_at" = '2012-06-29 19:08:01.805262', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:01.805644', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "updated_at" = '2012-06-29 19:08:01.811960', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.7ms) Completed 200 OK in 74ms (Views: 46.4ms | ActiveRecord: 1.7ms)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (37.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:01 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:01.933595', "current_sign_in_at" = '2012-06-29 19:08:01.933595', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:01.933998', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.2ms) Completed 200 OK in 76ms (Views: 46.4ms | ActiveRecord: 1.7ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:02.023022', "current_sign_in_at" = '2012-06-29 19:08:02.023022', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:02.023405', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 113ms (Views: 47.0ms | ActiveRecord: 1.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["custom_field", nil], ["division_id", 1], ["founded", 1], ["logo_url", nil], ["losses", 1], ["manager", "Manager 1"], ["mascot", nil], ["name", "Team 1"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["win_percentage", 1.0], ["wins", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Team"], ["content", " Lorém --1-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1/edit" for 127.0.0.1 at 2012-06-29 13:08:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:02.213782', "current_sign_in_at" = '2012-06-29 19:08:02.213782', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:02.214210', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (53.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (1.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.0ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (57.4ms) Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (12.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (2.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 260ms (Views: 241.5ms | ActiveRecord: 0.9ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["custom_field", nil], ["division_id", 2], ["founded", 2], ["logo_url", nil], ["losses", 2], ["manager", "Manager 2"], ["mascot", nil], ["name", "Team 2"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["win_percentage", 2.0], ["wins", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Team"], ["content", " Lorém --2-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment/1/edit" for 127.0.0.1 at 2012-06-29 13:08:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:02.486749', "current_sign_in_at" = '2012-06-29 19:08:02.486749', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:02.487110', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"comment", "id"=>"1"} Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (5.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (2.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 103ms (Views: 84.5ms | ActiveRecord: 0.3ms)  (1.9ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["custom_field", nil], ["division_id", 3], ["founded", 3], ["logo_url", nil], ["losses", 3], ["manager", "Manager 3"], ["mascot", nil], ["name", "Team 3"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["win_percentage", 3.0], ["wins", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Team"], ["content", " Lorém --3-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment" for 127.0.0.1 at 2012-06-29 13:08:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:02.606135', "current_sign_in_at" = '2012-06-29 19:08:02.606135', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:02.606631', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"comment"} Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "comments"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 120ms (Views: 101.5ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:02.791618', "current_sign_in_at" = '2012-06-29 19:08:02.791618', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:02.792101', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 30ms (Views: 26.7ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:02.850663', "current_sign_in_at" = '2012-06-29 19:08:02.850663', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:02.851068', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (15.4ms)  (0.1ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 168ms (Views: 150.3ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:03.029371', "current_sign_in_at" = '2012-06-29 19:08:03.029371', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:03.029744', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 114ms (Views: 85.3ms | ActiveRecord: 1.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:03 -0600 RSpec::Mocks::MockExpectationError (# received :respond_to? with unexpected arguments expected: (:email) got: (:active_for_authentication?)): rspec-mocks (2.10.1) lib/rspec/mocks/error_generator.rb:80:in `__raise' rspec-mocks (2.10.1) lib/rspec/mocks/error_generator.rb:27:in `raise_unexpected_message_args_error' rspec-mocks (2.10.1) lib/rspec/mocks/proxy.rb:141:in `raise_unexpected_message_args_error' rspec-mocks (2.10.1) lib/rspec/mocks/proxy.rb:131:in `message_received' rspec-mocks (2.10.1) lib/rspec/mocks/method_double.rb:92:in `respond_to?' rspec-mocks (2.10.1) lib/rspec/mocks/any_instance/recorder.rb:173:in `respond_to?' devise (2.1.2) lib/devise/hooks/activatable.rb:6:in `block in ' warden (1.2.1) lib/warden/hooks.rb:14:in `call' warden (1.2.1) lib/warden/hooks.rb:14:in `block in _run_callbacks' warden (1.2.1) lib/warden/hooks.rb:9:in `each' warden (1.2.1) lib/warden/hooks.rb:9:in `_run_callbacks' warden (1.2.1) lib/warden/manager.rb:53:in `_run_callbacks' warden (1.2.1) lib/warden/proxy.rb:179:in `set_user' warden (1.2.1) lib/warden/test/helpers.rb:20:in `block in login_as' warden (1.2.1) lib/warden.rb:38:in `call' warden (1.2.1) lib/warden.rb:38:in `block in test_mode!' warden (1.2.1) lib/warden/hooks.rb:14:in `call' warden (1.2.1) lib/warden/hooks.rb:14:in `block in _run_callbacks' warden (1.2.1) lib/warden/hooks.rb:9:in `each' warden (1.2.1) lib/warden/hooks.rb:9:in `_run_callbacks' warden (1.2.1) lib/warden/manager.rb:53:in `_run_callbacks' warden (1.2.1) lib/warden/proxy.rb:31:in `initialize' warden (1.2.1) lib/warden/manager.rb:33:in `new' warden (1.2.1) lib/warden/manager.rb:33:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/rails_admin_spec.rb:132:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:03.178873', "current_sign_in_at" = '2012-06-29 19:08:03.178873', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:03.179267', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 117ms (Views: 88.2ms | ActiveRecord: 1.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:03.308209', "current_sign_in_at" = '2012-06-29 19:08:03.308209', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:03.308588', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.9ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 111ms (Views: 93.4ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:03 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/1/edit?return_to= Completed 302 Found in 50ms (ActiveRecord: 0.9ms) Started GET "/admin/player/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:08:03 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.6ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 83ms (Views: 78.8ms | ActiveRecord: 0.5ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:03.584283', "current_sign_in_at" = '2012-06-29 19:08:03.584283', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:03.584643', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 110ms (Views: 93.2ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:03 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:03 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 75ms (Views: 70.9ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["custom_field", nil], ["division_id", 4], ["founded", 4], ["logo_url", nil], ["losses", 4], ["manager", "Manager 4"], ["mascot", nil], ["name", "Team 4"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["win_percentage", 4.0], ["wins", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", 1], ["position", "Position 1"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/new?player%5Bname%5D=Player+1&player%5Bnumber%5D=1&player%5Bposition%5D=Position+1&player%5Bteam_id%5D=1" for 127.0.0.1 at 2012-06-29 13:08:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:03.801591', "current_sign_in_at" = '2012-06-29 19:08:03.801591', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:03.801969', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"player"=>{"name"=>"Player 1", "number"=>"1", "position"=>"Position 1", "team_id"=>"1"}, "model_name"=>"player"}  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1 AND "players"."team_id" = 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (4) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (7.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 406 Not Acceptable in 117ms (Views: 94.7ms | ActiveRecord: 0.6ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/new?id=1" for 127.0.0.1 at 2012-06-29 13:08:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:03.965943', "current_sign_in_at" = '2012-06-29 19:08:03.965943', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:03.966361', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"id"=>"1", "model_name"=>"player"}  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" IS NULL AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (37.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 406 Not Acceptable in 113ms (Views: 93.4ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_field", nil], ["division_id", 5], ["founded", 5], ["logo_url", nil], ["losses", 5], ["manager", "Manager 5"], ["mascot", nil], ["name", "Team 5"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["win_percentage", 5.0], ["wins", 5]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 2 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 2"], ["notes", nil], ["number", 2], ["position", "Position 2"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 1"], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 1], ["pick", 1], ["player_id", 1], ["round", 1], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/new?player%5Bdraft_id%5D=1&player%5Bname%5D=Jackie+Robinson&player%5Bnumber%5D=42&player%5Bposition%5D=Second+baseman" for 127.0.0.1 at 2012-06-29 13:08:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:04.098368', "current_sign_in_at" = '2012-06-29 19:08:04.098368', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:04.098756', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"player"=>{"draft_id"=>"1", "name"=>"Jackie Robinson", "number"=>"42", "position"=>"Second baseman"}, "model_name"=>"player"} Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.1ms) UPDATE "drafts" SET "player_id" = 2, "updated_at" = '2012-06-29 19:08:04.160937' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["item", 2], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 63ms (ActiveRecord: 0.7ms) Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY "players"."id" DESC LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_field", nil], ["division_id", 6], ["founded", 6], ["logo_url", nil], ["losses", 6], ["manager", "Manager 6"], ["mascot", nil], ["name", "Team 6"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["win_percentage", 6.0], ["wins", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_field", nil], ["division_id", 7], ["founded", 7], ["logo_url", nil], ["losses", 7], ["manager", "Manager 7"], ["mascot", nil], ["name", "Team 7"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["win_percentage", 7.0], ["wins", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_field", nil], ["division_id", 8], ["founded", 8], ["logo_url", nil], ["losses", 8], ["manager", "Manager 8"], ["mascot", nil], ["name", "Team 8"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["win_percentage", 8.0], ["wins", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/fan/new?fan%5Bname%5D=John+Doe&fan%5Bteam_ids%5D%5B%5D=1" for 127.0.0.1 at 2012-06-29 13:08:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:04.176741', "current_sign_in_at" = '2012-06-29 19:08:04.176741', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:04.177116', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"fan"=>{"name"=>"John Doe", "team_ids"=>["1"]}, "model_name"=>"fan"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["name", "John Doe"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) INSERT INTO "fans_teams" ("fan_id", "team_id") VALUES (1, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["item", 1], ["message", "Created John Doe"], ["table", "Fan"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/fan Completed 302 Found in 25ms (ActiveRecord: 0.6ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" LIMIT 1 Team Load (0.0ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = ? LIMIT 1 [["id", 1]] Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "fans_teams" ON "teams"."id" = "fans_teams"."team_id" WHERE "fans_teams"."fan_id" = 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:04.215099', "current_sign_in_at" = '2012-06-29 19:08:04.215099', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:04.215471', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (43.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 112ms (Views: 93.6ms | ActiveRecord: 0.4ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:04 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson on steroids", "position"=>"", "number"=>"", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_another"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" IS NULL AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.1ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 406 Not Acceptable in 82ms (Views: 74.9ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:04.462551', "current_sign_in_at" = '2012-06-29 19:08:04.462551', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:04.462906', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 117ms (Views: 99.2ms | ActiveRecord: 0.4ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:04 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_another"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/new?return_to= Completed 302 Found in 45ms (ActiveRecord: 0.7ms) Started GET "/admin/player/new?return_to=" for 127.0.0.1 at 2012-06-29 13:08:04 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"return_to"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.1ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 78ms (Views: 74.8ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["name", "league 1340996884.723098"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_league_id", 1], ["name", "div 1340996884.72309"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["name", "league 1340996884.731095"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_league_id", 2], ["name", "div 1340996884.7310872"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["name", "league 1340996884.732867"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_league_id", 3], ["name", "div 1340996884.732861"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/league/new?league%5Bdivision_ids%5D%5B%5D=1&league%5Bname%5D=National+League" for 127.0.0.1 at 2012-06-29 13:08:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:04.735912', "current_sign_in_at" = '2012-06-29 19:08:04.735912', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:04.736310', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"league"=>{"division_ids"=>["1"], "name"=>"National League"}, "model_name"=>"league"} Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["name", "National League"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 4, "updated_at" = '2012-06-29 19:08:04.758417' WHERE "divisions"."custom_id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["item", 4], ["message", "Created National League"], ["table", "League"], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/league Completed 302 Found in 23ms (ActiveRecord: 0.6ms) League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY "leagues"."id" DESC LIMIT 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 4  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["custom_field", nil], ["division_id", 9], ["founded", 9], ["logo_url", nil], ["losses", 9], ["manager", "Manager 9"], ["mascot", nil], ["name", "Team 9"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["win_percentage", 9.0], ["wins", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 3 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 3"], ["notes", nil], ["number", 3], ["position", "Position 3"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 2"], ["created_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 2], ["pick", 2], ["player_id", 1], ["round", 2], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:04.903651', "current_sign_in_at" = '2012-06-29 19:08:04.903651', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:04.904080', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (9) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" IN ('1') Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 112ms (Views: 94.4ms | ActiveRecord: 0.6ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.5ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.026633', "current_sign_in_at" = '2012-06-29 19:08:05.026633', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.027010', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 149ms (Views: 93.1ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.186604', "current_sign_in_at" = '2012-06-29 19:08:05.186604', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.187009', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 112ms (Views: 94.4ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.309647', "current_sign_in_at" = '2012-06-29 19:08:05.309647', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.310011', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (39.3ms) Completed 200 OK in 148ms (Views: 92.0ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.468463', "current_sign_in_at" = '2012-06-29 19:08:05.468463', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.468822', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.3ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 111ms (Views: 94.0ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 4 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "has_many association prepopulated"], ["notes", nil], ["number", 4], ["position", "Position 4"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new?associations[players]=1" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.594601', "current_sign_in_at" = '2012-06-29 19:08:05.594601', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.594978', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"associations"=>{"players"=>"1"}, "model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (0.0ms) SELECT "players".id FROM "players" WHERE "players"."team_id" IS NULL ORDER BY id Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.8ms)  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 161ms (Views: 104.5ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["custom_field", nil], ["division_id", 10], ["founded", 10], ["logo_url", nil], ["losses", 10], ["manager", "Manager 10"], ["mascot", nil], ["name", "belongs_to association prepopulated"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["win_percentage", 10.0], ["wins", 10]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new?associations[team]=1" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.768688', "current_sign_in_at" = '2012-06-29 19:08:05.768688', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.769081', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"associations"=>{"team"=>"1"}, "model_name"=>"player"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (10) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (45.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.3ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 115ms (Views: 96.5ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new?player[name]=Sam" for 127.0.0.1 at 2012-06-29 13:08:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:05.893974', "current_sign_in_at" = '2012-06-29 19:08:05.893974', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:05.894351', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"player"=>{"name"=>"Sam"}, "model_name"=>"player"} WARNING: Can't mass-assign protected attributes: id, suspended  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (39.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 151ms (Views: 93.5ms | ActiveRecord: 0.3ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 5 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 4"], ["notes", nil], ["number", 5], ["position", "Position 5"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.057405', "current_sign_in_at" = '2012-06-29 19:08:06.057405', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.057780', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 29.6ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["item", 1], ["message", "Destroyed Player 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 404 Not Found in 34ms (Views: 29.0ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 6 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 5"], ["notes", nil], ["number", 6], ["position", "Position 6"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.206432', "current_sign_in_at" = '2012-06-29 19:08:06.206432', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.206837', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 81ms (Views: 24.8ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["item", 1], ["message", "Destroyed Player 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 404 Not Found in 73ms (Views: 67.7ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 7 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 6"], ["notes", nil], ["number", 7], ["position", "Position 7"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.386285', "current_sign_in_at" = '2012-06-29 19:08:06.386285', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.386647', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 43ms (Views: 24.9ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["item", 1], ["message", "Destroyed Player 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.1ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 69ms (Views: 63.4ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 8 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 7"], ["notes", nil], ["number", 8], ["position", "Position 8"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.526694', "current_sign_in_at" = '2012-06-29 19:08:06.526694', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.527068', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 43ms (Views: 24.7ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["item", 1], ["message", "Destroyed Player 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 31ms (Views: 25.5ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 9 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 8"], ["notes", nil], ["number", 9], ["position", "Position 9"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.664790', "current_sign_in_at" = '2012-06-29 19:08:06.664790', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.665212', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 82ms (Views: 63.1ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "_continue"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Redirected to http://www.example.com/admin/player Filter chain halted as :check_for_cancel rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.2ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 34ms (Views: 29.0ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.802118', "current_sign_in_at" = '2012-06-29 19:08:06.802118', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.802469', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 404 Not Found in 93ms (Views: 73.1ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 10 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 9"], ["notes", nil], ["number", 10], ["position", "Position 10"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:06.906676', "current_sign_in_at" = '2012-06-29 19:08:06.906676', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:06.907049', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 89ms (Views: 71.4ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:06 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:07 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"http://www.example.com/admin/player/1", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["item", 1], ["message", "Destroyed Player 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/1 Completed 302 Found in 6ms (ActiveRecord: 0.5ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:07 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 22ms (Views: 18.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 11 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 10"], ["notes", nil], ["number", 11], ["position", "Position 11"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:07.070040', "current_sign_in_at" = '2012-06-29 19:08:07.070040', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:07.070398', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 88ms (Views: 31.3ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:07 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 22ms (Views: 18.3ms | ActiveRecord: 0.3ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:07 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"http://www.example.com/admin/player/1", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["item", 1], ["message", "Destroyed Player 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:07 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 68ms (Views: 64.2ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 12 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 11"], ["notes", nil], ["number", 12], ["position", "Position 12"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 12"], ["notes", nil], ["number", 13], ["position", "Position 13"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 14 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 13"], ["notes", nil], ["number", 14], ["position", "Position 14"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:07.679241', "current_sign_in_at" = '2012-06-29 19:08:07.679241', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:07.679632', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 99ms (Views: 79.7ms | ActiveRecord: 0.2ms) Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:08:07 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 85ms (Views: 81.8ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 15 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 14"], ["notes", nil], ["number", 15], ["position", "Position 15"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 16 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 15"], ["notes", nil], ["number", 16], ["position", "Position 16"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:07.920222', "current_sign_in_at" = '2012-06-29 19:08:07.920222', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:07.920637', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 50ms (Views: 28.7ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/whatever" for 127.0.0.1 at 2012-06-29 13:08:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:07.981368', "current_sign_in_at" = '2012-06-29 19:08:07.981368', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:07.981682', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"whatever"}  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 404 Not Found in 123ms (Views: 52.7ms | ActiveRecord: 1.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.118862', "current_sign_in_at" = '2012-06-29 19:08:08.118862', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.119238', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 116ms (Views: 47.2ms | ActiveRecord: 1.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 17 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 16"], ["notes", nil], ["number", 17], ["position", "Position 17"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 18 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 17"], ["notes", nil], ["number", 18], ["position", "Position 18"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?all=true" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.247942', "current_sign_in_at" = '2012-06-29 19:08:08.247942', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.248301', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"all"=>"true", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 100ms (Views: 80.1ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["custom_field", nil], ["division_id", 11], ["founded", 11], ["logo_url", nil], ["losses", 11], ["manager", "Manager 11"], ["mascot", nil], ["name", "Team 10"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["win_percentage", 11.0], ["wins", 11]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 19 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 18"], ["notes", nil], ["number", 19], ["position", "Position 19"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 20 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 19"], ["notes", nil], ["number", 20], ["position", "Position 20"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?associated_collection=players&compact=true¤t_action=update&source_abstract_model=team&source_object_id=1" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.364712', "current_sign_in_at" = '2012-06-29 19:08:08.364712', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.365119', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"associated_collection"=>"players", "compact"=>"true", "current_action"=>"update", "source_abstract_model"=>"team", "source_object_id"=>"1", "model_name"=>"player"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 105ms (Views: 81.2ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 21 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 20"], ["notes", nil], ["number", 21], ["position", "Position 21"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Pl" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.486529', "current_sign_in_at" = '2012-06-29 19:08:08.486529', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.486928', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Pl", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE 'Pl%')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE 'Pl%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 91ms (Views: 69.9ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 22 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 21"], ["notes", nil], ["number", 22], ["position", "Position 22"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Pl" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.594292', "current_sign_in_at" = '2012-06-29 19:08:08.594292', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.594690', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Pl", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE '%Pl')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE '%Pl')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 86ms (Views: 64.8ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 23 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 22"], ["notes", nil], ["number", 23], ["position", "Position 23"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.696324', "current_sign_in_at" = '2012-06-29 19:08:08.696324', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.696720', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 47ms (Views: 28.8ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 24 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 23"], ["notes", nil], ["number", 24], ["position", "Position 24"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=layer+23" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.797503', "current_sign_in_at" = '2012-06-29 19:08:08.797503', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.797902', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"layer 23", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE 'layer 23%')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE 'layer 23%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 47ms (Views: 26.4ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 25 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 24"], ["notes", nil], ["number", 25], ["position", "Position 25"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 26 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 25"], ["notes", nil], ["number", 26], ["position", "Position 26"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player.json?compact=true" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.896584', "current_sign_in_at" = '2012-06-29 19:08:08.896584', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.896946', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as JSON Parameters: {"compact"=>"true", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0 Completed 200 OK in 20ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 27 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 26"], ["notes", nil], ["number", 27], ["position", "Position 27"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 28 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 27"], ["notes", nil], ["number", 28], ["position", "Position 28"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 29 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 28"], ["notes", nil], ["number", 29], ["position", "Position 29"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 30 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 29"], ["notes", nil], ["number", 30], ["position", "Position 30"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 31 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 30"], ["notes", nil], ["number", 31], ["position", "Position 31"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 31"], ["notes", nil], ["number", 32], ["position", "Position 32"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 33 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 32"], ["notes", nil], ["number", 33], ["position", "Position 33"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 34 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 33"], ["notes", nil], ["number", 34], ["position", "Position 34"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 35 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 34"], ["notes", nil], ["number", 35], ["position", "Position 35"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 36 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 35"], ["notes", nil], ["number", 36], ["position", "Position 36"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 37 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 36"], ["notes", nil], ["number", 37], ["position", "Position 37"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 38 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 37"], ["notes", nil], ["number", 38], ["position", "Position 38"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 39 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 38"], ["notes", nil], ["number", 39], ["position", "Position 39"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 40 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 39"], ["notes", nil], ["number", 40], ["position", "Position 40"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 41 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 40"], ["notes", nil], ["number", 41], ["position", "Position 41"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 41"], ["notes", nil], ["number", 42], ["position", "Position 42"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 43 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 42"], ["notes", nil], ["number", 43], ["position", "Position 43"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 44 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 43"], ["notes", nil], ["number", 44], ["position", "Position 44"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 45 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 44"], ["notes", nil], ["number", 45], ["position", "Position 45"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 46 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 45"], ["notes", nil], ["number", 46], ["position", "Position 46"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:08 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:08 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:08.960821', "current_sign_in_at" = '2012-06-29 19:08:08.960821', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:08.961278', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 202ms (Views: 181.2ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 47 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 46"], ["notes", nil], ["number", 47], ["position", "Position 47"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 48 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 47"], ["notes", nil], ["number", 48], ["position", "Position 48"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 49 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 48"], ["notes", nil], ["number", 49], ["position", "Position 49"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 50 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 49"], ["notes", nil], ["number", 50], ["position", "Position 50"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 51 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 50"], ["notes", nil], ["number", 51], ["position", "Position 51"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 52 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 51"], ["notes", nil], ["number", 52], ["position", "Position 52"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 53 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 52"], ["notes", nil], ["number", 53], ["position", "Position 53"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 54 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 53"], ["notes", nil], ["number", 54], ["position", "Position 54"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 55 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 54"], ["notes", nil], ["number", 55], ["position", "Position 55"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 56 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 55"], ["notes", nil], ["number", 56], ["position", "Position 56"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 57 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 56"], ["notes", nil], ["number", 57], ["position", "Position 57"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 58 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 57"], ["notes", nil], ["number", 58], ["position", "Position 58"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 59 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 58"], ["notes", nil], ["number", 59], ["position", "Position 59"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 60 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 59"], ["notes", nil], ["number", 60], ["position", "Position 60"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 61 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 60"], ["notes", nil], ["number", 61], ["position", "Position 61"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 62 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 61"], ["notes", nil], ["number", 62], ["position", "Position 62"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 63 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 62"], ["notes", nil], ["number", 63], ["position", "Position 63"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 64 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 63"], ["notes", nil], ["number", 64], ["position", "Position 64"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 65 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 64"], ["notes", nil], ["number", 65], ["position", "Position 65"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 66 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 65"], ["notes", nil], ["number", 66], ["position", "Position 66"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 67 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 66"], ["notes", nil], ["number", 67], ["position", "Position 67"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 68 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 67"], ["notes", nil], ["number", 68], ["position", "Position 68"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 69 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 68"], ["notes", nil], ["number", 69], ["position", "Position 69"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 70 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 69"], ["notes", nil], ["number", 70], ["position", "Position 70"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 71 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 70"], ["notes", nil], ["number", 71], ["position", "Position 71"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 72 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 71"], ["notes", nil], ["number", 72], ["position", "Position 72"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 73 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 72"], ["notes", nil], ["number", 73], ["position", "Position 73"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 74 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 73"], ["notes", nil], ["number", 74], ["position", "Position 74"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 75 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 74"], ["notes", nil], ["number", 75], ["position", "Position 75"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 76 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 75"], ["notes", nil], ["number", 76], ["position", "Position 76"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 77 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 76"], ["notes", nil], ["number", 77], ["position", "Position 77"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 78 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 77"], ["notes", nil], ["number", 78], ["position", "Position 78"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 79 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 78"], ["notes", nil], ["number", 79], ["position", "Position 79"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 80 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 79"], ["notes", nil], ["number", 80], ["position", "Position 80"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 81 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 80"], ["notes", nil], ["number", 81], ["position", "Position 81"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 82 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 81"], ["notes", nil], ["number", 82], ["position", "Position 82"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 83 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 82"], ["notes", nil], ["number", 83], ["position", "Position 83"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 84 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 83"], ["notes", nil], ["number", 84], ["position", "Position 84"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 85 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 84"], ["notes", nil], ["number", 85], ["position", "Position 85"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 86 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 85"], ["notes", nil], ["number", 86], ["position", "Position 86"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 87 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 86"], ["notes", nil], ["number", 87], ["position", "Position 87"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 88 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 87"], ["notes", nil], ["number", 88], ["position", "Position 88"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 89 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 88"], ["notes", nil], ["number", 89], ["position", "Position 89"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 90 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 89"], ["notes", nil], ["number", 90], ["position", "Position 90"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 91 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 90"], ["notes", nil], ["number", 91], ["position", "Position 91"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 92 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 91"], ["notes", nil], ["number", 92], ["position", "Position 92"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 93 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 92"], ["notes", nil], ["number", 93], ["position", "Position 93"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 94 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 93"], ["notes", nil], ["number", 94], ["position", "Position 94"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 95 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 94"], ["notes", nil], ["number", 95], ["position", "Position 95"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 96 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 95"], ["notes", nil], ["number", 96], ["position", "Position 96"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 97 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 96"], ["notes", nil], ["number", 97], ["position", "Position 97"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 98 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 97"], ["notes", nil], ["number", 98], ["position", "Position 98"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 99 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 98"], ["notes", nil], ["number", 99], ["position", "Position 99"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 100 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 99"], ["notes", nil], ["number", 100], ["position", "Position 100"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 101 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 100"], ["notes", nil], ["number", 101], ["position", "Position 101"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 102 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 101"], ["notes", nil], ["number", 102], ["position", "Position 102"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 103 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 102"], ["notes", nil], ["number", 103], ["position", "Position 103"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 104 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 103"], ["notes", nil], ["number", 104], ["position", "Position 104"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 105 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 104"], ["notes", nil], ["number", 105], ["position", "Position 105"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 106 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 105"], ["notes", nil], ["number", 106], ["position", "Position 106"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 107 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 106"], ["notes", nil], ["number", 107], ["position", "Position 107"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 108 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 107"], ["notes", nil], ["number", 108], ["position", "Position 108"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 109 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 108"], ["notes", nil], ["number", 109], ["position", "Position 109"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 110 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 109"], ["notes", nil], ["number", 110], ["position", "Position 110"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 111 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 110"], ["notes", nil], ["number", 111], ["position", "Position 111"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 112 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 111"], ["notes", nil], ["number", 112], ["position", "Position 112"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 113 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 112"], ["notes", nil], ["number", 113], ["position", "Position 113"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 114 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 113"], ["notes", nil], ["number", 114], ["position", "Position 114"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 115 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 114"], ["notes", nil], ["number", 115], ["position", "Position 115"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 116 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 115"], ["notes", nil], ["number", 116], ["position", "Position 116"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 117 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 116"], ["notes", nil], ["number", 117], ["position", "Position 117"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 118 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 117"], ["notes", nil], ["number", 118], ["position", "Position 118"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 119 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 118"], ["notes", nil], ["number", 119], ["position", "Position 119"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 120 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 119"], ["notes", nil], ["number", 120], ["position", "Position 120"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 121 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 120"], ["notes", nil], ["number", 121], ["position", "Position 121"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 122 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 121"], ["notes", nil], ["number", 122], ["position", "Position 122"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 123 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 122"], ["notes", nil], ["number", 123], ["position", "Position 123"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 124 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 123"], ["notes", nil], ["number", 124], ["position", "Position 124"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 125 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 124"], ["notes", nil], ["number", 125], ["position", "Position 125"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 126 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 125"], ["notes", nil], ["number", 126], ["position", "Position 126"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 127 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 126"], ["notes", nil], ["number", 127], ["position", "Position 127"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 128 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 127"], ["notes", nil], ["number", 128], ["position", "Position 128"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 129 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 128"], ["notes", nil], ["number", 129], ["position", "Position 129"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 130 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 129"], ["notes", nil], ["number", 130], ["position", "Position 130"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 131 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 130"], ["notes", nil], ["number", 131], ["position", "Position 131"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 132 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 131"], ["notes", nil], ["number", 132], ["position", "Position 132"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 133 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 132"], ["notes", nil], ["number", 133], ["position", "Position 133"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 134 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 133"], ["notes", nil], ["number", 134], ["position", "Position 134"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 135 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 134"], ["notes", nil], ["number", 135], ["position", "Position 135"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 136 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 135"], ["notes", nil], ["number", 136], ["position", "Position 136"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 137 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 136"], ["notes", nil], ["number", 137], ["position", "Position 137"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 138 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 137"], ["notes", nil], ["number", 138], ["position", "Position 138"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 139 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 138"], ["notes", nil], ["number", 139], ["position", "Position 139"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 140 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 139"], ["notes", nil], ["number", 140], ["position", "Position 140"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 141 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 140"], ["notes", nil], ["number", 141], ["position", "Position 141"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 142 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 141"], ["notes", nil], ["number", 142], ["position", "Position 142"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 143 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 142"], ["notes", nil], ["number", 143], ["position", "Position 143"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 144 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 143"], ["notes", nil], ["number", 144], ["position", "Position 144"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 145 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 144"], ["notes", nil], ["number", 145], ["position", "Position 145"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 146 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 145"], ["notes", nil], ["number", 146], ["position", "Position 146"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 147 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 146"], ["notes", nil], ["number", 147], ["position", "Position 147"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 148 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 147"], ["notes", nil], ["number", 148], ["position", "Position 148"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 149 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 148"], ["notes", nil], ["number", 149], ["position", "Position 149"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 150 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 149"], ["notes", nil], ["number", 150], ["position", "Position 150"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 151 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 150"], ["notes", nil], ["number", 151], ["position", "Position 151"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 152 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 151"], ["notes", nil], ["number", 152], ["position", "Position 152"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 153 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 152"], ["notes", nil], ["number", 153], ["position", "Position 153"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 154 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 153"], ["notes", nil], ["number", 154], ["position", "Position 154"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 155 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 154"], ["notes", nil], ["number", 155], ["position", "Position 155"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 156 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 155"], ["notes", nil], ["number", 156], ["position", "Position 156"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 157 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 156"], ["notes", nil], ["number", 157], ["position", "Position 157"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 158 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 157"], ["notes", nil], ["number", 158], ["position", "Position 158"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 159 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 158"], ["notes", nil], ["number", 159], ["position", "Position 159"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 160 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 159"], ["notes", nil], ["number", 160], ["position", "Position 160"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 161 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 160"], ["notes", nil], ["number", 161], ["position", "Position 161"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 162 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 161"], ["notes", nil], ["number", 162], ["position", "Position 162"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 163 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 162"], ["notes", nil], ["number", 163], ["position", "Position 163"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 164 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 163"], ["notes", nil], ["number", 164], ["position", "Position 164"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 165 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 164"], ["notes", nil], ["number", 165], ["position", "Position 165"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 166 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 165"], ["notes", nil], ["number", 166], ["position", "Position 166"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 167 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 166"], ["notes", nil], ["number", 167], ["position", "Position 167"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 168 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 167"], ["notes", nil], ["number", 168], ["position", "Position 168"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 169 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 168"], ["notes", nil], ["number", 169], ["position", "Position 169"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 170 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 169"], ["notes", nil], ["number", 170], ["position", "Position 170"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 171 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 170"], ["notes", nil], ["number", 171], ["position", "Position 171"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 172 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 171"], ["notes", nil], ["number", 172], ["position", "Position 172"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 173 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 172"], ["notes", nil], ["number", 173], ["position", "Position 173"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 174 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 173"], ["notes", nil], ["number", 174], ["position", "Position 174"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 175 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 174"], ["notes", nil], ["number", 175], ["position", "Position 175"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 176 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 175"], ["notes", nil], ["number", 176], ["position", "Position 176"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 177 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 176"], ["notes", nil], ["number", 177], ["position", "Position 177"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 178 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 177"], ["notes", nil], ["number", 178], ["position", "Position 178"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 179 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 178"], ["notes", nil], ["number", 179], ["position", "Position 179"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 180 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 179"], ["notes", nil], ["number", 180], ["position", "Position 180"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 181 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 180"], ["notes", nil], ["number", 181], ["position", "Position 181"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 182 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 181"], ["notes", nil], ["number", 182], ["position", "Position 182"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 183 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 182"], ["notes", nil], ["number", 183], ["position", "Position 183"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 184 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 183"], ["notes", nil], ["number", 184], ["position", "Position 184"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 185 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 184"], ["notes", nil], ["number", 185], ["position", "Position 185"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 186 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 185"], ["notes", nil], ["number", 186], ["position", "Position 186"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 187 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 186"], ["notes", nil], ["number", 187], ["position", "Position 187"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 188 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 187"], ["notes", nil], ["number", 188], ["position", "Position 188"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 189 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 188"], ["notes", nil], ["number", 189], ["position", "Position 189"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 190 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 189"], ["notes", nil], ["number", 190], ["position", "Position 190"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 191 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 190"], ["notes", nil], ["number", 191], ["position", "Position 191"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 192 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 191"], ["notes", nil], ["number", 192], ["position", "Position 192"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 193 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 192"], ["notes", nil], ["number", 193], ["position", "Position 193"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 194 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 193"], ["notes", nil], ["number", 194], ["position", "Position 194"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 195 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 194"], ["notes", nil], ["number", 195], ["position", "Position 195"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 196 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 195"], ["notes", nil], ["number", 196], ["position", "Position 196"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 197 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 196"], ["notes", nil], ["number", 197], ["position", "Position 197"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 198 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 197"], ["notes", nil], ["number", 198], ["position", "Position 198"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 199 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 198"], ["notes", nil], ["number", 199], ["position", "Position 199"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 200 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 199"], ["notes", nil], ["number", 200], ["position", "Position 200"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 201 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 200"], ["notes", nil], ["number", 201], ["position", "Position 201"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 202 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 201"], ["notes", nil], ["number", 202], ["position", "Position 202"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 203 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 202"], ["notes", nil], ["number", 203], ["position", "Position 203"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 204 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 203"], ["notes", nil], ["number", 204], ["position", "Position 204"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 205 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 204"], ["notes", nil], ["number", 205], ["position", "Position 205"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 206 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 205"], ["notes", nil], ["number", 206], ["position", "Position 206"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 207 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 206"], ["notes", nil], ["number", 207], ["position", "Position 207"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 208 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 207"], ["notes", nil], ["number", 208], ["position", "Position 208"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 209 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 208"], ["notes", nil], ["number", 209], ["position", "Position 209"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 210 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 209"], ["notes", nil], ["number", 210], ["position", "Position 210"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 211 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 210"], ["notes", nil], ["number", 211], ["position", "Position 211"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 212 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 211"], ["notes", nil], ["number", 212], ["position", "Position 212"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 213 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 212"], ["notes", nil], ["number", 213], ["position", "Position 213"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 214 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 213"], ["notes", nil], ["number", 214], ["position", "Position 214"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 215 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 214"], ["notes", nil], ["number", 215], ["position", "Position 215"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 216 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 215"], ["notes", nil], ["number", 216], ["position", "Position 216"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 217 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 216"], ["notes", nil], ["number", 217], ["position", "Position 217"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 218 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 217"], ["notes", nil], ["number", 218], ["position", "Position 218"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 219 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 218"], ["notes", nil], ["number", 219], ["position", "Position 219"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 220 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 219"], ["notes", nil], ["number", 220], ["position", "Position 220"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 221 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 220"], ["notes", nil], ["number", 221], ["position", "Position 221"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 222 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 221"], ["notes", nil], ["number", 222], ["position", "Position 222"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 223 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 222"], ["notes", nil], ["number", 223], ["position", "Position 223"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 224 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 223"], ["notes", nil], ["number", 224], ["position", "Position 224"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 225 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 224"], ["notes", nil], ["number", 225], ["position", "Position 225"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 226 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 225"], ["notes", nil], ["number", 226], ["position", "Position 226"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 227 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 226"], ["notes", nil], ["number", 227], ["position", "Position 227"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 228 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 227"], ["notes", nil], ["number", 228], ["position", "Position 228"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 229 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 228"], ["notes", nil], ["number", 229], ["position", "Position 229"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 230 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 229"], ["notes", nil], ["number", 230], ["position", "Position 230"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 231 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 230"], ["notes", nil], ["number", 231], ["position", "Position 231"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 232 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 231"], ["notes", nil], ["number", 232], ["position", "Position 232"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 233 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 232"], ["notes", nil], ["number", 233], ["position", "Position 233"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 234 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 233"], ["notes", nil], ["number", 234], ["position", "Position 234"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 235 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 234"], ["notes", nil], ["number", 235], ["position", "Position 235"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 236 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 235"], ["notes", nil], ["number", 236], ["position", "Position 236"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 237 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 236"], ["notes", nil], ["number", 237], ["position", "Position 237"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 238 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 237"], ["notes", nil], ["number", 238], ["position", "Position 238"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 239 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 238"], ["notes", nil], ["number", 239], ["position", "Position 239"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 240 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 239"], ["notes", nil], ["number", 240], ["position", "Position 240"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 241 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 240"], ["notes", nil], ["number", 241], ["position", "Position 241"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 242 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 241"], ["notes", nil], ["number", 242], ["position", "Position 242"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 243 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 242"], ["notes", nil], ["number", 243], ["position", "Position 243"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 244 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 243"], ["notes", nil], ["number", 244], ["position", "Position 244"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 245 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 244"], ["notes", nil], ["number", 245], ["position", "Position 245"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 246 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 245"], ["notes", nil], ["number", 246], ["position", "Position 246"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 247 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 246"], ["notes", nil], ["number", 247], ["position", "Position 247"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 248 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 247"], ["notes", nil], ["number", 248], ["position", "Position 248"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 249 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 248"], ["notes", nil], ["number", 249], ["position", "Position 249"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 250 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 249"], ["notes", nil], ["number", 250], ["position", "Position 250"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 251 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 250"], ["notes", nil], ["number", 251], ["position", "Position 251"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 252 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 251"], ["notes", nil], ["number", 252], ["position", "Position 252"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 253 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 252"], ["notes", nil], ["number", 253], ["position", "Position 253"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 254 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 253"], ["notes", nil], ["number", 254], ["position", "Position 254"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 255 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 254"], ["notes", nil], ["number", 255], ["position", "Position 255"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 256 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 255"], ["notes", nil], ["number", 256], ["position", "Position 256"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 257 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 256"], ["notes", nil], ["number", 257], ["position", "Position 257"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 258 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 257"], ["notes", nil], ["number", 258], ["position", "Position 258"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 259 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 258"], ["notes", nil], ["number", 259], ["position", "Position 259"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 260 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 259"], ["notes", nil], ["number", 260], ["position", "Position 260"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 261 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 260"], ["notes", nil], ["number", 261], ["position", "Position 261"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 262 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 261"], ["notes", nil], ["number", 262], ["position", "Position 262"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 263 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 262"], ["notes", nil], ["number", 263], ["position", "Position 263"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 264 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 263"], ["notes", nil], ["number", 264], ["position", "Position 264"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 265 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 264"], ["notes", nil], ["number", 265], ["position", "Position 265"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 266 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 265"], ["notes", nil], ["number", 266], ["position", "Position 266"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 267 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 266"], ["notes", nil], ["number", 267], ["position", "Position 267"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 268 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 267"], ["notes", nil], ["number", 268], ["position", "Position 268"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 269 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 268"], ["notes", nil], ["number", 269], ["position", "Position 269"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 270 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 269"], ["notes", nil], ["number", 270], ["position", "Position 270"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 271 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 270"], ["notes", nil], ["number", 271], ["position", "Position 271"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 272 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 271"], ["notes", nil], ["number", 272], ["position", "Position 272"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 273 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 272"], ["notes", nil], ["number", 273], ["position", "Position 273"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 274 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 273"], ["notes", nil], ["number", 274], ["position", "Position 274"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 275 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 274"], ["notes", nil], ["number", 275], ["position", "Position 275"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 276 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 275"], ["notes", nil], ["number", 276], ["position", "Position 276"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 277 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 276"], ["notes", nil], ["number", 277], ["position", "Position 277"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 278 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 277"], ["notes", nil], ["number", 278], ["position", "Position 278"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 279 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 278"], ["notes", nil], ["number", 279], ["position", "Position 279"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 280 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 279"], ["notes", nil], ["number", 280], ["position", "Position 280"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 281 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 280"], ["notes", nil], ["number", 281], ["position", "Position 281"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 282 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 281"], ["notes", nil], ["number", 282], ["position", "Position 282"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 283 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 282"], ["notes", nil], ["number", 283], ["position", "Position 283"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 284 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 283"], ["notes", nil], ["number", 284], ["position", "Position 284"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 285 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 284"], ["notes", nil], ["number", 285], ["position", "Position 285"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 286 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 285"], ["notes", nil], ["number", 286], ["position", "Position 286"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 287 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 286"], ["notes", nil], ["number", 287], ["position", "Position 287"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 288 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 287"], ["notes", nil], ["number", 288], ["position", "Position 288"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 289 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 288"], ["notes", nil], ["number", 289], ["position", "Position 289"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 290 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 289"], ["notes", nil], ["number", 290], ["position", "Position 290"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 291 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 290"], ["notes", nil], ["number", 291], ["position", "Position 291"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 292 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 291"], ["notes", nil], ["number", 292], ["position", "Position 292"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 293 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 292"], ["notes", nil], ["number", 293], ["position", "Position 293"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 294 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 293"], ["notes", nil], ["number", 294], ["position", "Position 294"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 295 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 294"], ["notes", nil], ["number", 295], ["position", "Position 295"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 296 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 295"], ["notes", nil], ["number", 296], ["position", "Position 296"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 297 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 296"], ["notes", nil], ["number", 297], ["position", "Position 297"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 298 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 297"], ["notes", nil], ["number", 298], ["position", "Position 298"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 299 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 298"], ["notes", nil], ["number", 299], ["position", "Position 299"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 300 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 299"], ["notes", nil], ["number", 300], ["position", "Position 300"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 301 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 300"], ["notes", nil], ["number", 301], ["position", "Position 301"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 302 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 301"], ["notes", nil], ["number", 302], ["position", "Position 302"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 303 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 302"], ["notes", nil], ["number", 303], ["position", "Position 303"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 304 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 303"], ["notes", nil], ["number", 304], ["position", "Position 304"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 305 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 304"], ["notes", nil], ["number", 305], ["position", "Position 305"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 306 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 305"], ["notes", nil], ["number", 306], ["position", "Position 306"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 307 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 306"], ["notes", nil], ["number", 307], ["position", "Position 307"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 308 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 307"], ["notes", nil], ["number", 308], ["position", "Position 308"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 309 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 308"], ["notes", nil], ["number", 309], ["position", "Position 309"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 310 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 309"], ["notes", nil], ["number", 310], ["position", "Position 310"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 311 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 310"], ["notes", nil], ["number", 311], ["position", "Position 311"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 312 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 311"], ["notes", nil], ["number", 312], ["position", "Position 312"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 313 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 312"], ["notes", nil], ["number", 313], ["position", "Position 313"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 314 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 313"], ["notes", nil], ["number", 314], ["position", "Position 314"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 315 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 314"], ["notes", nil], ["number", 315], ["position", "Position 315"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 316 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 315"], ["notes", nil], ["number", 316], ["position", "Position 316"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 317 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 316"], ["notes", nil], ["number", 317], ["position", "Position 317"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 318 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 317"], ["notes", nil], ["number", 318], ["position", "Position 318"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 319 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 318"], ["notes", nil], ["number", 319], ["position", "Position 319"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 320 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 319"], ["notes", nil], ["number", 320], ["position", "Position 320"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 321 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 320"], ["notes", nil], ["number", 321], ["position", "Position 321"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 322 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 321"], ["notes", nil], ["number", 322], ["position", "Position 322"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 323 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 322"], ["notes", nil], ["number", 323], ["position", "Position 323"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 324 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 323"], ["notes", nil], ["number", 324], ["position", "Position 324"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 325 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 324"], ["notes", nil], ["number", 325], ["position", "Position 325"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 326 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 325"], ["notes", nil], ["number", 326], ["position", "Position 326"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 327 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 326"], ["notes", nil], ["number", 327], ["position", "Position 327"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 328 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 327"], ["notes", nil], ["number", 328], ["position", "Position 328"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 329 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 328"], ["notes", nil], ["number", 329], ["position", "Position 329"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 330 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 329"], ["notes", nil], ["number", 330], ["position", "Position 330"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 331 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 330"], ["notes", nil], ["number", 331], ["position", "Position 331"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 332 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 331"], ["notes", nil], ["number", 332], ["position", "Position 332"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 333 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 332"], ["notes", nil], ["number", 333], ["position", "Position 333"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 334 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 333"], ["notes", nil], ["number", 334], ["position", "Position 334"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 335 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 334"], ["notes", nil], ["number", 335], ["position", "Position 335"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 336 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 335"], ["notes", nil], ["number", 336], ["position", "Position 336"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 337 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 336"], ["notes", nil], ["number", 337], ["position", "Position 337"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 338 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 337"], ["notes", nil], ["number", 338], ["position", "Position 338"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 339 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 338"], ["notes", nil], ["number", 339], ["position", "Position 339"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 340 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 339"], ["notes", nil], ["number", 340], ["position", "Position 340"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 341 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 340"], ["notes", nil], ["number", 341], ["position", "Position 341"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 342 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 341"], ["notes", nil], ["number", 342], ["position", "Position 342"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 343 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 342"], ["notes", nil], ["number", 343], ["position", "Position 343"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 344 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 343"], ["notes", nil], ["number", 344], ["position", "Position 344"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 345 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 344"], ["notes", nil], ["number", 345], ["position", "Position 345"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 346 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 345"], ["notes", nil], ["number", 346], ["position", "Position 346"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 347 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 346"], ["notes", nil], ["number", 347], ["position", "Position 347"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 348 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 347"], ["notes", nil], ["number", 348], ["position", "Position 348"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 349 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 348"], ["notes", nil], ["number", 349], ["position", "Position 349"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 350 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 349"], ["notes", nil], ["number", 350], ["position", "Position 350"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 351 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 350"], ["notes", nil], ["number", 351], ["position", "Position 351"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 352 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 351"], ["notes", nil], ["number", 352], ["position", "Position 352"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 353 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 352"], ["notes", nil], ["number", 353], ["position", "Position 353"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 354 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 353"], ["notes", nil], ["number", 354], ["position", "Position 354"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 355 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 354"], ["notes", nil], ["number", 355], ["position", "Position 355"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 356 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 355"], ["notes", nil], ["number", 356], ["position", "Position 356"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 357 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 356"], ["notes", nil], ["number", 357], ["position", "Position 357"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 358 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 357"], ["notes", nil], ["number", 358], ["position", "Position 358"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 359 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 358"], ["notes", nil], ["number", 359], ["position", "Position 359"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 360 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 359"], ["notes", nil], ["number", 360], ["position", "Position 360"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 361 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 360"], ["notes", nil], ["number", 361], ["position", "Position 361"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 362 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 361"], ["notes", nil], ["number", 362], ["position", "Position 362"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 363 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 362"], ["notes", nil], ["number", 363], ["position", "Position 363"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 364 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 363"], ["notes", nil], ["number", 364], ["position", "Position 364"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 365 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 364"], ["notes", nil], ["number", 365], ["position", "Position 365"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 366 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 365"], ["notes", nil], ["number", 366], ["position", "Position 366"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 367 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 366"], ["notes", nil], ["number", 367], ["position", "Position 367"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 368 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 367"], ["notes", nil], ["number", 368], ["position", "Position 368"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 369 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 368"], ["notes", nil], ["number", 369], ["position", "Position 369"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 370 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 369"], ["notes", nil], ["number", 370], ["position", "Position 370"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 371 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 370"], ["notes", nil], ["number", 371], ["position", "Position 371"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 372 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 371"], ["notes", nil], ["number", 372], ["position", "Position 372"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 373 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 372"], ["notes", nil], ["number", 373], ["position", "Position 373"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 374 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 373"], ["notes", nil], ["number", 374], ["position", "Position 374"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 375 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 374"], ["notes", nil], ["number", 375], ["position", "Position 375"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 376 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 375"], ["notes", nil], ["number", 376], ["position", "Position 376"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 377 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 376"], ["notes", nil], ["number", 377], ["position", "Position 377"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 378 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 377"], ["notes", nil], ["number", 378], ["position", "Position 378"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 379 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 378"], ["notes", nil], ["number", 379], ["position", "Position 379"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 380 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 379"], ["notes", nil], ["number", 380], ["position", "Position 380"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 381 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 380"], ["notes", nil], ["number", 381], ["position", "Position 381"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 382 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 381"], ["notes", nil], ["number", 382], ["position", "Position 382"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 383 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 382"], ["notes", nil], ["number", 383], ["position", "Position 383"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 384 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 383"], ["notes", nil], ["number", 384], ["position", "Position 384"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 385 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 384"], ["notes", nil], ["number", 385], ["position", "Position 385"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 386 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 385"], ["notes", nil], ["number", 386], ["position", "Position 386"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 387 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 386"], ["notes", nil], ["number", 387], ["position", "Position 387"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 388 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 387"], ["notes", nil], ["number", 388], ["position", "Position 388"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 389 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 388"], ["notes", nil], ["number", 389], ["position", "Position 389"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 390 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 389"], ["notes", nil], ["number", 390], ["position", "Position 390"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 391 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 390"], ["notes", nil], ["number", 391], ["position", "Position 391"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 392 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 391"], ["notes", nil], ["number", 392], ["position", "Position 392"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 393 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 392"], ["notes", nil], ["number", 393], ["position", "Position 393"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 394 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 393"], ["notes", nil], ["number", 394], ["position", "Position 394"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 395 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 394"], ["notes", nil], ["number", 395], ["position", "Position 395"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 396 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 395"], ["notes", nil], ["number", 396], ["position", "Position 396"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 397 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 396"], ["notes", nil], ["number", 397], ["position", "Position 397"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 398 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 397"], ["notes", nil], ["number", 398], ["position", "Position 398"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 399 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 398"], ["notes", nil], ["number", 399], ["position", "Position 399"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 400 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 399"], ["notes", nil], ["number", 400], ["position", "Position 400"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 401 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 400"], ["notes", nil], ["number", 401], ["position", "Position 401"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 402 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 401"], ["notes", nil], ["number", 402], ["position", "Position 402"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 403 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 402"], ["notes", nil], ["number", 403], ["position", "Position 403"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 404 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 403"], ["notes", nil], ["number", 404], ["position", "Position 404"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 405 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 404"], ["notes", nil], ["number", 405], ["position", "Position 405"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 406 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 405"], ["notes", nil], ["number", 406], ["position", "Position 406"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 407 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 406"], ["notes", nil], ["number", 407], ["position", "Position 407"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 408 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 407"], ["notes", nil], ["number", 408], ["position", "Position 408"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 409 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 408"], ["notes", nil], ["number", 409], ["position", "Position 409"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 410 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 409"], ["notes", nil], ["number", 410], ["position", "Position 410"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 411 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 410"], ["notes", nil], ["number", 411], ["position", "Position 411"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 412 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 411"], ["notes", nil], ["number", 412], ["position", "Position 412"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 413 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 412"], ["notes", nil], ["number", 413], ["position", "Position 413"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 414 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 413"], ["notes", nil], ["number", 414], ["position", "Position 414"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 415 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 414"], ["notes", nil], ["number", 415], ["position", "Position 415"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 416 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 415"], ["notes", nil], ["number", 416], ["position", "Position 416"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 417 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 416"], ["notes", nil], ["number", 417], ["position", "Position 417"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 418 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 417"], ["notes", nil], ["number", 418], ["position", "Position 418"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 419 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 418"], ["notes", nil], ["number", 419], ["position", "Position 419"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 420 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 419"], ["notes", nil], ["number", 420], ["position", "Position 420"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 421 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 420"], ["notes", nil], ["number", 421], ["position", "Position 421"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 422 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 421"], ["notes", nil], ["number", 422], ["position", "Position 422"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 423 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 422"], ["notes", nil], ["number", 423], ["position", "Position 423"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 424 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 423"], ["notes", nil], ["number", 424], ["position", "Position 424"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 425 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 424"], ["notes", nil], ["number", 425], ["position", "Position 425"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 426 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 425"], ["notes", nil], ["number", 426], ["position", "Position 426"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 427 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 426"], ["notes", nil], ["number", 427], ["position", "Position 427"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 428 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 427"], ["notes", nil], ["number", 428], ["position", "Position 428"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 429 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 428"], ["notes", nil], ["number", 429], ["position", "Position 429"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 430 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 429"], ["notes", nil], ["number", 430], ["position", "Position 430"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 431 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 430"], ["notes", nil], ["number", 431], ["position", "Position 431"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 432 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 431"], ["notes", nil], ["number", 432], ["position", "Position 432"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 433 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 432"], ["notes", nil], ["number", 433], ["position", "Position 433"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 434 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 433"], ["notes", nil], ["number", 434], ["position", "Position 434"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 435 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 434"], ["notes", nil], ["number", 435], ["position", "Position 435"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 436 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 435"], ["notes", nil], ["number", 436], ["position", "Position 436"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 437 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 436"], ["notes", nil], ["number", 437], ["position", "Position 437"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 438 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 437"], ["notes", nil], ["number", 438], ["position", "Position 438"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 439 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 438"], ["notes", nil], ["number", 439], ["position", "Position 439"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 440 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 439"], ["notes", nil], ["number", 440], ["position", "Position 440"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 441 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 440"], ["notes", nil], ["number", 441], ["position", "Position 441"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 442 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 441"], ["notes", nil], ["number", 442], ["position", "Position 442"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 443 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 442"], ["notes", nil], ["number", 443], ["position", "Position 443"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 444 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 443"], ["notes", nil], ["number", 444], ["position", "Position 444"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 445 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 444"], ["notes", nil], ["number", 445], ["position", "Position 445"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 446 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 445"], ["notes", nil], ["number", 446], ["position", "Position 446"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?page=20" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.035845', "current_sign_in_at" = '2012-06-29 19:08:10.035845', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.036223', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"page"=>"20", "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 380  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 132ms (Views: 111.4ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 12], ["founded", 12], ["logo_url", nil], ["losses", 12], ["manager", "Manager 12"], ["mascot", nil], ["name", "Team 11"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 12.0], ["wins", 12]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 13], ["founded", 13], ["logo_url", nil], ["losses", 13], ["manager", "Manager 13"], ["mascot", nil], ["name", "Team 12"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 13.0], ["wins", 13]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 447 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 446"], ["notes", nil], ["number", 447], ["position", "Position 447"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 448 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 447"], ["notes", nil], ["number", 448], ["position", "Position 448"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 449 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 448"], ["notes", nil], ["number", 449], ["position", "Position 449"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 450 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 449"], ["notes", nil], ["number", 450], ["position", "Position 450"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[injured][1][v]=true" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.267303', "current_sign_in_at" = '2012-06-29 19:08:10.267303', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.267717', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"injured"=>{"1"=>{"v"=>"true"}}}, "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.injured = 't'))) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (2, 1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE (((players.injured = 't'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 41ms (Views: 36.7ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 14], ["founded", 14], ["logo_url", nil], ["losses", 14], ["manager", "Manager 14"], ["mascot", nil], ["name", "Team 13"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 14.0], ["wins", 14]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 15], ["founded", 15], ["logo_url", nil], ["losses", 15], ["manager", "Manager 15"], ["mascot", nil], ["name", "Team 14"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 15.0], ["wins", 15]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 451 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 450"], ["notes", nil], ["number", 451], ["position", "Position 451"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 452 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 451"], ["notes", nil], ["number", 452], ["position", "Position 452"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 453 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 452"], ["notes", nil], ["number", 453], ["position", "Position 453"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 454 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 453"], ["notes", nil], ["number", 454], ["position", "Position 454"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Player+450" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.397154', "current_sign_in_at" = '2012-06-29 19:08:10.397154', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.397564', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Player 450", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE '%Player 450%')) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE '%Player 450%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 40ms (Views: 32.1ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 16], ["founded", 16], ["logo_url", nil], ["losses", 16], ["manager", "Manager 16"], ["mascot", nil], ["name", "Team 15"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 16.0], ["wins", 16]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 17], ["founded", 17], ["logo_url", nil], ["losses", 17], ["manager", "Manager 17"], ["mascot", nil], ["name", "Team 16"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 17.0], ["wins", 17]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 455 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 454"], ["notes", nil], ["number", 455], ["position", "Position 455"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 456 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 455"], ["notes", nil], ["number", 456], ["position", "Position 456"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 457 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 456"], ["notes", nil], ["number", 457], ["position", "Position 457"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 458 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 457"], ["notes", nil], ["number", 458], ["position", "Position 458"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+15" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.523139', "current_sign_in_at" = '2012-06-29 19:08:10.523139', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.523567', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 15"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 15%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 15%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 48ms (Views: 39.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 18], ["founded", 18], ["logo_url", nil], ["losses", 18], ["manager", "Manager 18"], ["mascot", nil], ["name", "Team 17"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 18.0], ["wins", 18]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 19], ["founded", 19], ["logo_url", nil], ["losses", 19], ["manager", "Manager 19"], ["mascot", nil], ["name", "Team 18"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 19.0], ["wins", 19]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 459 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 458"], ["notes", nil], ["number", 459], ["position", "Position 459"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 460 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 459"], ["notes", nil], ["number", 460], ["position", "Position 460"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 461 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 460"], ["notes", nil], ["number", 461], ["position", "Position 461"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 462 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 461"], ["notes", nil], ["number", 462], ["position", "Position 462"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+17" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.659297', "current_sign_in_at" = '2012-06-29 19:08:10.659297', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.659694', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 17"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 17%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 17%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 48ms (Views: 39.4ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 20], ["founded", 20], ["logo_url", nil], ["losses", 20], ["manager", "Manager 20"], ["mascot", nil], ["name", "Team 19"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 20.0], ["wins", 20]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 21], ["founded", 21], ["logo_url", nil], ["losses", 21], ["manager", "Manager 21"], ["mascot", nil], ["name", "Team 20"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 21.0], ["wins", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 463 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 462"], ["notes", nil], ["number", 463], ["position", "Position 463"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 464 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 463"], ["notes", nil], ["number", 464], ["position", "Position 464"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 465 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 464"], ["notes", nil], ["number", 465], ["position", "Position 465"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 466 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 465"], ["notes", nil], ["number", 466], ["position", "Position 466"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.793888', "current_sign_in_at" = '2012-06-29 19:08:10.793888', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.794289', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (2, 1)  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 90ms (Views: 86.1ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 22], ["founded", 22], ["logo_url", nil], ["losses", 22], ["manager", "Manager 22"], ["mascot", nil], ["name", "Team 21"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 22.0], ["wins", 22]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["custom_field", nil], ["division_id", 23], ["founded", 23], ["logo_url", nil], ["losses", 23], ["manager", "Manager 23"], ["mascot", nil], ["name", "Team 22"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["win_percentage", 23.0], ["wins", 23]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 467 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 466"], ["notes", nil], ["number", 467], ["position", "Position 467"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (41.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 468 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 467"], ["notes", nil], ["number", 468], ["position", "Position 468"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 469 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 468"], ["notes", nil], ["number", 469], ["position", "Position 469"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 470 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 469"], ["notes", nil], ["number", 470], ["position", "Position 470"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+21" for 127.0.0.1 at 2012-06-29 13:08:10 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:10.968431', "current_sign_in_at" = '2012-06-29 19:08:10.968431', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:10.968905', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 21"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 21%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 21%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 47ms (Views: 38.3ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 24], ["founded", 24], ["logo_url", nil], ["losses", 24], ["manager", "Manager 24"], ["mascot", nil], ["name", "Team 23"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 24.0], ["wins", 24]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 25], ["founded", 25], ["logo_url", nil], ["losses", 25], ["manager", "Manager 25"], ["mascot", nil], ["name", "Team 24"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 25.0], ["wins", 25]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 471 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 470"], ["notes", nil], ["number", 471], ["position", "Position 471"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 472 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 471"], ["notes", nil], ["number", 472], ["position", "Position 472"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 473 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 472"], ["notes", nil], ["number", 473], ["position", "Position 473"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 474 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 473"], ["notes", nil], ["number", 474], ["position", "Position 474"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+23" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.101983', "current_sign_in_at" = '2012-06-29 19:08:11.101983', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.102431', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 23"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 23%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 23%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 46ms (Views: 38.7ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 26], ["founded", 26], ["logo_url", nil], ["losses", 26], ["manager", "Manager 26"], ["mascot", nil], ["name", "Team 25"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 26.0], ["wins", 26]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 27], ["founded", 27], ["logo_url", nil], ["losses", 27], ["manager", "Manager 27"], ["mascot", nil], ["name", "Team 26"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 27.0], ["wins", 27]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 475 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 474"], ["notes", nil], ["number", 475], ["position", "Position 475"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 476 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 475"], ["notes", nil], ["number", 476], ["position", "Position 476"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 477 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 476"], ["notes", nil], ["number", 477], ["position", "Position 477"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 478 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 477"], ["notes", nil], ["number", 478], ["position", "Position 478"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+25&f[team][2][o]=is&f[team][2][v]=1" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.235638', "current_sign_in_at" = '2012-06-29 19:08:11.235638', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.236103', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 25"}, "2"=>{"o"=>"is", "v"=>"1"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 25%')) AND ((teams.name LIKE '1') OR (players.team_id = 1))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 25%')) AND ((teams.name LIKE '1') OR (players.team_id = 1))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 52ms (Views: 40.1ms | ActiveRecord: 0.3ms) Started GET "/admin/player?f[team][1][v]=Team+25&f[team][2][o]=is&f[team][2][v]=2" for 127.0.0.1 at 2012-06-29 13:08:11 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 25"}, "2"=>{"o"=>"is", "v"=>"2"}}}, "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 25%')) AND ((teams.name LIKE '2') OR (players.team_id = 2))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 25%')) AND ((teams.name LIKE '2') OR (players.team_id = 2))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 35ms (Views: 24.8ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 28], ["founded", 28], ["logo_url", nil], ["losses", 28], ["manager", "Manager 28"], ["mascot", nil], ["name", "Team 27"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 28.0], ["wins", 28]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 29], ["founded", 29], ["logo_url", nil], ["losses", 29], ["manager", "Manager 29"], ["mascot", nil], ["name", "Team 28"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 29.0], ["wins", 29]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 479 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 478"], ["notes", nil], ["number", 479], ["position", "Position 479"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 480 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 479"], ["notes", nil], ["number", 480], ["position", "Position 480"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 481 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 480"], ["notes", nil], ["number", 481], ["position", "Position 481"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 482 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 481"], ["notes", nil], ["number", 482], ["position", "Position 482"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Player+478" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.457295', "current_sign_in_at" = '2012-06-29 19:08:11.457295', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.457728', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Player 478", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.position LIKE '%Player 478%')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.position LIKE '%Player 478%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 36ms (Views: 29.0ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 30], ["founded", 30], ["logo_url", nil], ["losses", 30], ["manager", "Manager 30"], ["mascot", nil], ["name", "Team 29"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 30.0], ["wins", 30]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 31], ["founded", 31], ["logo_url", nil], ["losses", 31], ["manager", "Manager 31"], ["mascot", nil], ["name", "Team 30"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 31.0], ["wins", 31]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 483 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 482"], ["notes", nil], ["number", 483], ["position", "Position 483"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 484 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 483"], ["notes", nil], ["number", 484], ["position", "Position 484"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 485 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 484"], ["notes", nil], ["number", 485], ["position", "Position 485"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 486 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 485"], ["notes", nil], ["number", 486], ["position", "Position 486"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+29" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.533628', "current_sign_in_at" = '2012-06-29 19:08:11.533628', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.534052', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 29"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 29%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 29%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 92ms (Views: 84.6ms | ActiveRecord: 0.4ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 32], ["founded", 32], ["logo_url", nil], ["losses", 32], ["manager", "Manager 32"], ["mascot", nil], ["name", "Team 31"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 32.0], ["wins", 32]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 33], ["founded", 33], ["logo_url", nil], ["losses", 33], ["manager", "Manager 33"], ["mascot", nil], ["name", "Team 32"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 33.0], ["wins", 33]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 487 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 486"], ["notes", nil], ["number", 487], ["position", "Position 487"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 488 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 487"], ["notes", nil], ["number", 488], ["position", "Position 488"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 489 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 488"], ["notes", nil], ["number", 489], ["position", "Position 489"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 490 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 489"], ["notes", nil], ["number", 490], ["position", "Position 490"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+31" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.712123', "current_sign_in_at" = '2012-06-29 19:08:11.712123', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.712501', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 31"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 31%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 31%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 47ms (Views: 37.4ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 34], ["founded", 34], ["logo_url", nil], ["losses", 34], ["manager", "Manager 34"], ["mascot", nil], ["name", "Team 33"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 34.0], ["wins", 34]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 35], ["founded", 35], ["logo_url", nil], ["losses", 35], ["manager", "Manager 35"], ["mascot", nil], ["name", "Team 34"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 35.0], ["wins", 35]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 491 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 490"], ["notes", nil], ["number", 491], ["position", "Position 491"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 492 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 491"], ["notes", nil], ["number", 492], ["position", "Position 492"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 493 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 492"], ["notes", nil], ["number", 493], ["position", "Position 493"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 494 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 493"], ["notes", nil], ["number", 494], ["position", "Position 494"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[injured][1][v]=true&f[retired][1][v]=true" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.844142', "current_sign_in_at" = '2012-06-29 19:08:11.844142', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.844565', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"injured"=>{"1"=>{"v"=>"true"}}, "retired"=>{"1"=>{"v"=>"true"}}}, "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.injured = 't')) AND ((players.retired = 't'))) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE (((players.injured = 't')) AND ((players.retired = 't'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 37ms (Views: 32.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 36], ["founded", 36], ["logo_url", nil], ["losses", 36], ["manager", "Manager 36"], ["mascot", nil], ["name", "Team 35"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 36.0], ["wins", 36]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["custom_field", nil], ["division_id", 37], ["founded", 37], ["logo_url", nil], ["losses", 37], ["manager", "Manager 37"], ["mascot", nil], ["name", "Team 36"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["win_percentage", 37.0], ["wins", 37]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 495 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 494"], ["notes", nil], ["number", 495], ["position", "Position 495"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 496 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 495"], ["notes", nil], ["number", 496], ["position", "Position 496"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 497 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 496"], ["notes", nil], ["number", 497], ["position", "Position 497"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 498 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 497"], ["notes", nil], ["number", 498], ["position", "Position 498"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=1" for 127.0.0.1 at 2012-06-29 13:08:11 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:11.966256', "current_sign_in_at" = '2012-06-29 19:08:11.966256', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:11.966669', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"1"}}}, "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.team_id = 1))) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE (((players.team_id = 1))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 42ms (Views: 37.2ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 499 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 498"], ["notes", nil], ["number", 499], ["position", "Position 499"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 500 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 499"], ["notes", nil], ["number", 500], ["position", "Position 500"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 501 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 500"], ["notes", nil], ["number", 501], ["position", "Position 501"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 502 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 501"], ["notes", nil], ["number", 502], ["position", "Position 502"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 503 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 502"], ["notes", nil], ["number", 503], ["position", "Position 503"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 504 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 503"], ["notes", nil], ["number", 504], ["position", "Position 504"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 505 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 504"], ["notes", nil], ["number", 505], ["position", "Position 505"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 506 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 505"], ["notes", nil], ["number", 506], ["position", "Position 506"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 507 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 506"], ["notes", nil], ["number", 507], ["position", "Position 507"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 508 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 507"], ["notes", nil], ["number", 508], ["position", "Position 508"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 509 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 508"], ["notes", nil], ["number", 509], ["position", "Position 509"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 510 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 509"], ["notes", nil], ["number", 510], ["position", "Position 510"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 511 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 510"], ["notes", nil], ["number", 511], ["position", "Position 511"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 512 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 511"], ["notes", nil], ["number", 512], ["position", "Position 512"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 513 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 512"], ["notes", nil], ["number", 513], ["position", "Position 513"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 514 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 513"], ["notes", nil], ["number", 514], ["position", "Position 514"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 515 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 514"], ["notes", nil], ["number", 515], ["position", "Position 515"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 516 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 515"], ["notes", nil], ["number", 516], ["position", "Position 516"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 517 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 516"], ["notes", nil], ["number", 517], ["position", "Position 517"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 518 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 517"], ["notes", nil], ["number", 518], ["position", "Position 518"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 519 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 518"], ["notes", nil], ["number", 519], ["position", "Position 519"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 520 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 519"], ["notes", nil], ["number", 520], ["position", "Position 520"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 521 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 520"], ["notes", nil], ["number", 521], ["position", "Position 521"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 522 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 521"], ["notes", nil], ["number", 522], ["position", "Position 522"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 523 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 522"], ["notes", nil], ["number", 523], ["position", "Position 523"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 524 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 523"], ["notes", nil], ["number", 524], ["position", "Position 524"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 525 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 524"], ["notes", nil], ["number", 525], ["position", "Position 525"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 526 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 525"], ["notes", nil], ["number", 526], ["position", "Position 526"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 527 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 526"], ["notes", nil], ["number", 527], ["position", "Position 527"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 528 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 527"], ["notes", nil], ["number", 528], ["position", "Position 528"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 529 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 528"], ["notes", nil], ["number", 529], ["position", "Position 529"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 530 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 529"], ["notes", nil], ["number", 530], ["position", "Position 530"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 531 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 530"], ["notes", nil], ["number", 531], ["position", "Position 531"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 532 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 531"], ["notes", nil], ["number", 532], ["position", "Position 532"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 533 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 532"], ["notes", nil], ["number", 533], ["position", "Position 533"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 534 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 533"], ["notes", nil], ["number", 534], ["position", "Position 534"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 535 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 534"], ["notes", nil], ["number", 535], ["position", "Position 535"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 536 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 535"], ["notes", nil], ["number", 536], ["position", "Position 536"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 537 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 536"], ["notes", nil], ["number", 537], ["position", "Position 537"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 538 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 537"], ["notes", nil], ["number", 538], ["position", "Position 538"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 539 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 538"], ["notes", nil], ["number", 539], ["position", "Position 539"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 540 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 539"], ["notes", nil], ["number", 540], ["position", "Position 540"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 541 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 540"], ["notes", nil], ["number", 541], ["position", "Position 541"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 542 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 541"], ["notes", nil], ["number", 542], ["position", "Position 542"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 543 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 542"], ["notes", nil], ["number", 543], ["position", "Position 543"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 544 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 543"], ["notes", nil], ["number", 544], ["position", "Position 544"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 545 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 544"], ["notes", nil], ["number", 545], ["position", "Position 545"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 546 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 545"], ["notes", nil], ["number", 546], ["position", "Position 546"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 547 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 546"], ["notes", nil], ["number", 547], ["position", "Position 547"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 548 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 547"], ["notes", nil], ["number", 548], ["position", "Position 548"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 549 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 548"], ["notes", nil], ["number", 549], ["position", "Position 549"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 550 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 549"], ["notes", nil], ["number", 550], ["position", "Position 550"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 551 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 550"], ["notes", nil], ["number", 551], ["position", "Position 551"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 552 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 551"], ["notes", nil], ["number", 552], ["position", "Position 552"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 553 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 552"], ["notes", nil], ["number", 553], ["position", "Position 553"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 554 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 553"], ["notes", nil], ["number", 554], ["position", "Position 554"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 555 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 554"], ["notes", nil], ["number", 555], ["position", "Position 555"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 556 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 555"], ["notes", nil], ["number", 556], ["position", "Position 556"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 557 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 556"], ["notes", nil], ["number", 557], ["position", "Position 557"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 558 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 557"], ["notes", nil], ["number", 558], ["position", "Position 558"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 559 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 558"], ["notes", nil], ["number", 559], ["position", "Position 559"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 560 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 559"], ["notes", nil], ["number", 560], ["position", "Position 560"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 561 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 560"], ["notes", nil], ["number", 561], ["position", "Position 561"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 562 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 561"], ["notes", nil], ["number", 562], ["position", "Position 562"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 563 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 562"], ["notes", nil], ["number", 563], ["position", "Position 563"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 564 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 563"], ["notes", nil], ["number", 564], ["position", "Position 564"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 565 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 564"], ["notes", nil], ["number", 565], ["position", "Position 565"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 566 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 565"], ["notes", nil], ["number", 566], ["position", "Position 566"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 567 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 566"], ["notes", nil], ["number", 567], ["position", "Position 567"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 568 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 567"], ["notes", nil], ["number", 568], ["position", "Position 568"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 569 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 568"], ["notes", nil], ["number", 569], ["position", "Position 569"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 570 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 569"], ["notes", nil], ["number", 570], ["position", "Position 570"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 571 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 570"], ["notes", nil], ["number", 571], ["position", "Position 571"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 572 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 571"], ["notes", nil], ["number", 572], ["position", "Position 572"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 573 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 572"], ["notes", nil], ["number", 573], ["position", "Position 573"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 574 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 573"], ["notes", nil], ["number", 574], ["position", "Position 574"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 575 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 574"], ["notes", nil], ["number", 575], ["position", "Position 575"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 576 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 575"], ["notes", nil], ["number", 576], ["position", "Position 576"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 577 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 576"], ["notes", nil], ["number", 577], ["position", "Position 577"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 578 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 577"], ["notes", nil], ["number", 578], ["position", "Position 578"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 579 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 578"], ["notes", nil], ["number", 579], ["position", "Position 579"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 580 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 579"], ["notes", nil], ["number", 580], ["position", "Position 580"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 581 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 580"], ["notes", nil], ["number", 581], ["position", "Position 581"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 582 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 581"], ["notes", nil], ["number", 582], ["position", "Position 582"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 583 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 582"], ["notes", nil], ["number", 583], ["position", "Position 583"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 584 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 583"], ["notes", nil], ["number", 584], ["position", "Position 584"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 585 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 584"], ["notes", nil], ["number", 585], ["position", "Position 585"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 586 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 585"], ["notes", nil], ["number", 586], ["position", "Position 586"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 587 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 586"], ["notes", nil], ["number", 587], ["position", "Position 587"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 588 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 587"], ["notes", nil], ["number", 588], ["position", "Position 588"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 589 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 588"], ["notes", nil], ["number", 589], ["position", "Position 589"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 590 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 589"], ["notes", nil], ["number", 590], ["position", "Position 590"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 591 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 590"], ["notes", nil], ["number", 591], ["position", "Position 591"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 592 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 591"], ["notes", nil], ["number", 592], ["position", "Position 592"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 593 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 592"], ["notes", nil], ["number", 593], ["position", "Position 593"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 594 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 593"], ["notes", nil], ["number", 594], ["position", "Position 594"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 595 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 594"], ["notes", nil], ["number", 595], ["position", "Position 595"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 596 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 595"], ["notes", nil], ["number", 596], ["position", "Position 596"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 597 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 596"], ["notes", nil], ["number", 597], ["position", "Position 597"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 598 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 597"], ["notes", nil], ["number", 598], ["position", "Position 598"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 599 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 598"], ["notes", nil], ["number", 599], ["position", "Position 599"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 600 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 599"], ["notes", nil], ["number", 600], ["position", "Position 600"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 601 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 600"], ["notes", nil], ["number", 601], ["position", "Position 601"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 602 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 601"], ["notes", nil], ["number", 602], ["position", "Position 602"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 603 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 602"], ["notes", nil], ["number", 603], ["position", "Position 603"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 604 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 603"], ["notes", nil], ["number", 604], ["position", "Position 604"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 605 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 604"], ["notes", nil], ["number", 605], ["position", "Position 605"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 606 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 605"], ["notes", nil], ["number", 606], ["position", "Position 606"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 607 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 606"], ["notes", nil], ["number", 607], ["position", "Position 607"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 608 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 607"], ["notes", nil], ["number", 608], ["position", "Position 608"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 609 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 608"], ["notes", nil], ["number", 609], ["position", "Position 609"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 610 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 609"], ["notes", nil], ["number", 610], ["position", "Position 610"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 611 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 610"], ["notes", nil], ["number", 611], ["position", "Position 611"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 612 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 611"], ["notes", nil], ["number", 612], ["position", "Position 612"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 613 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 612"], ["notes", nil], ["number", 613], ["position", "Position 613"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 614 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 613"], ["notes", nil], ["number", 614], ["position", "Position 614"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 615 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 614"], ["notes", nil], ["number", 615], ["position", "Position 615"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 616 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 615"], ["notes", nil], ["number", 616], ["position", "Position 616"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 617 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 616"], ["notes", nil], ["number", 617], ["position", "Position 617"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 618 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 617"], ["notes", nil], ["number", 618], ["position", "Position 618"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 619 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 618"], ["notes", nil], ["number", 619], ["position", "Position 619"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 620 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 619"], ["notes", nil], ["number", 620], ["position", "Position 620"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 621 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 620"], ["notes", nil], ["number", 621], ["position", "Position 621"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 622 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 621"], ["notes", nil], ["number", 622], ["position", "Position 622"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 623 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 622"], ["notes", nil], ["number", 623], ["position", "Position 623"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 624 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 623"], ["notes", nil], ["number", 624], ["position", "Position 624"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 625 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 624"], ["notes", nil], ["number", 625], ["position", "Position 625"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 626 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 625"], ["notes", nil], ["number", 626], ["position", "Position 626"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 627 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 626"], ["notes", nil], ["number", 627], ["position", "Position 627"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 628 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 627"], ["notes", nil], ["number", 628], ["position", "Position 628"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 629 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 628"], ["notes", nil], ["number", 629], ["position", "Position 629"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 630 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 629"], ["notes", nil], ["number", 630], ["position", "Position 630"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 631 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 630"], ["notes", nil], ["number", 631], ["position", "Position 631"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 632 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 631"], ["notes", nil], ["number", 632], ["position", "Position 632"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 633 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 632"], ["notes", nil], ["number", 633], ["position", "Position 633"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 634 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 633"], ["notes", nil], ["number", 634], ["position", "Position 634"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 635 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 634"], ["notes", nil], ["number", 635], ["position", "Position 635"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 636 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 635"], ["notes", nil], ["number", 636], ["position", "Position 636"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 637 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 636"], ["notes", nil], ["number", 637], ["position", "Position 637"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 638 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 637"], ["notes", nil], ["number", 638], ["position", "Position 638"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 639 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 638"], ["notes", nil], ["number", 639], ["position", "Position 639"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 640 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 639"], ["notes", nil], ["number", 640], ["position", "Position 640"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 641 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 640"], ["notes", nil], ["number", 641], ["position", "Position 641"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 642 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 641"], ["notes", nil], ["number", 642], ["position", "Position 642"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 643 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 642"], ["notes", nil], ["number", 643], ["position", "Position 643"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 644 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 643"], ["notes", nil], ["number", 644], ["position", "Position 644"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 645 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 644"], ["notes", nil], ["number", 645], ["position", "Position 645"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 646 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 645"], ["notes", nil], ["number", 646], ["position", "Position 646"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 647 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 646"], ["notes", nil], ["number", 647], ["position", "Position 647"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 648 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 647"], ["notes", nil], ["number", 648], ["position", "Position 648"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 649 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 648"], ["notes", nil], ["number", 649], ["position", "Position 649"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 650 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 649"], ["notes", nil], ["number", 650], ["position", "Position 650"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 651 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 650"], ["notes", nil], ["number", 651], ["position", "Position 651"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 652 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 651"], ["notes", nil], ["number", 652], ["position", "Position 652"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 653 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 652"], ["notes", nil], ["number", 653], ["position", "Position 653"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 654 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 653"], ["notes", nil], ["number", 654], ["position", "Position 654"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 655 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 654"], ["notes", nil], ["number", 655], ["position", "Position 655"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 656 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 655"], ["notes", nil], ["number", 656], ["position", "Position 656"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 657 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 656"], ["notes", nil], ["number", 657], ["position", "Position 657"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 658 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 657"], ["notes", nil], ["number", 658], ["position", "Position 658"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 659 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 658"], ["notes", nil], ["number", 659], ["position", "Position 659"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 660 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 659"], ["notes", nil], ["number", 660], ["position", "Position 660"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 661 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 660"], ["notes", nil], ["number", 661], ["position", "Position 661"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 662 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 661"], ["notes", nil], ["number", 662], ["position", "Position 662"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 663 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 662"], ["notes", nil], ["number", 663], ["position", "Position 663"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 664 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 663"], ["notes", nil], ["number", 664], ["position", "Position 664"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 665 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 664"], ["notes", nil], ["number", 665], ["position", "Position 665"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 666 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 665"], ["notes", nil], ["number", 666], ["position", "Position 666"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 667 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 666"], ["notes", nil], ["number", 667], ["position", "Position 667"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 668 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 667"], ["notes", nil], ["number", 668], ["position", "Position 668"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 669 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 668"], ["notes", nil], ["number", 669], ["position", "Position 669"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 670 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 669"], ["notes", nil], ["number", 670], ["position", "Position 670"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 671 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 670"], ["notes", nil], ["number", 671], ["position", "Position 671"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 672 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 671"], ["notes", nil], ["number", 672], ["position", "Position 672"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 673 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 672"], ["notes", nil], ["number", 673], ["position", "Position 673"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 674 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 673"], ["notes", nil], ["number", 674], ["position", "Position 674"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 675 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 674"], ["notes", nil], ["number", 675], ["position", "Position 675"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 676 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 675"], ["notes", nil], ["number", 676], ["position", "Position 676"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 677 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 676"], ["notes", nil], ["number", 677], ["position", "Position 677"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 678 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 677"], ["notes", nil], ["number", 678], ["position", "Position 678"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 679 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 678"], ["notes", nil], ["number", 679], ["position", "Position 679"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 680 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 679"], ["notes", nil], ["number", 680], ["position", "Position 680"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 681 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 680"], ["notes", nil], ["number", 681], ["position", "Position 681"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 682 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 681"], ["notes", nil], ["number", 682], ["position", "Position 682"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 683 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 682"], ["notes", nil], ["number", 683], ["position", "Position 683"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 684 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 683"], ["notes", nil], ["number", 684], ["position", "Position 684"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 685 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 684"], ["notes", nil], ["number", 685], ["position", "Position 685"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 686 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 685"], ["notes", nil], ["number", 686], ["position", "Position 686"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 687 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 686"], ["notes", nil], ["number", 687], ["position", "Position 687"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 688 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 687"], ["notes", nil], ["number", 688], ["position", "Position 688"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 689 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 688"], ["notes", nil], ["number", 689], ["position", "Position 689"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 690 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 689"], ["notes", nil], ["number", 690], ["position", "Position 690"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 691 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 690"], ["notes", nil], ["number", 691], ["position", "Position 691"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 692 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 691"], ["notes", nil], ["number", 692], ["position", "Position 692"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 693 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 692"], ["notes", nil], ["number", 693], ["position", "Position 693"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 694 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 693"], ["notes", nil], ["number", 694], ["position", "Position 694"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 695 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 694"], ["notes", nil], ["number", 695], ["position", "Position 695"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 696 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 695"], ["notes", nil], ["number", 696], ["position", "Position 696"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 697 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 696"], ["notes", nil], ["number", 697], ["position", "Position 697"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 698 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 697"], ["notes", nil], ["number", 698], ["position", "Position 698"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 699 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 698"], ["notes", nil], ["number", 699], ["position", "Position 699"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 700 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 699"], ["notes", nil], ["number", 700], ["position", "Position 700"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 701 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 700"], ["notes", nil], ["number", 701], ["position", "Position 701"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 702 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 701"], ["notes", nil], ["number", 702], ["position", "Position 702"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 703 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 702"], ["notes", nil], ["number", 703], ["position", "Position 703"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 704 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 703"], ["notes", nil], ["number", 704], ["position", "Position 704"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 705 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 704"], ["notes", nil], ["number", 705], ["position", "Position 705"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 706 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 705"], ["notes", nil], ["number", 706], ["position", "Position 706"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 707 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 706"], ["notes", nil], ["number", 707], ["position", "Position 707"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 708 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 707"], ["notes", nil], ["number", 708], ["position", "Position 708"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 709 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 708"], ["notes", nil], ["number", 709], ["position", "Position 709"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 710 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 709"], ["notes", nil], ["number", 710], ["position", "Position 710"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 711 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 710"], ["notes", nil], ["number", 711], ["position", "Position 711"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 712 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 711"], ["notes", nil], ["number", 712], ["position", "Position 712"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 713 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 712"], ["notes", nil], ["number", 713], ["position", "Position 713"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 714 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 713"], ["notes", nil], ["number", 714], ["position", "Position 714"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 715 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 714"], ["notes", nil], ["number", 715], ["position", "Position 715"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 716 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 715"], ["notes", nil], ["number", 716], ["position", "Position 716"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 717 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 716"], ["notes", nil], ["number", 717], ["position", "Position 717"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 718 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 717"], ["notes", nil], ["number", 718], ["position", "Position 718"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 719 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 718"], ["notes", nil], ["number", 719], ["position", "Position 719"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 720 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 719"], ["notes", nil], ["number", 720], ["position", "Position 720"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 721 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 720"], ["notes", nil], ["number", 721], ["position", "Position 721"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 722 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 721"], ["notes", nil], ["number", 722], ["position", "Position 722"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 723 AND "players"."team_id" IS NULL) LIMIT 1 SQL (51.5ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 722"], ["notes", nil], ["number", 723], ["position", "Position 723"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 724 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 723"], ["notes", nil], ["number", 724], ["position", "Position 724"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 725 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 724"], ["notes", nil], ["number", 725], ["position", "Position 725"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 726 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 725"], ["notes", nil], ["number", 726], ["position", "Position 726"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 727 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 726"], ["notes", nil], ["number", 727], ["position", "Position 727"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 728 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 727"], ["notes", nil], ["number", 728], ["position", "Position 728"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 729 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 728"], ["notes", nil], ["number", 729], ["position", "Position 729"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 730 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 729"], ["notes", nil], ["number", 730], ["position", "Position 730"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 731 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 730"], ["notes", nil], ["number", 731], ["position", "Position 731"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 732 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 731"], ["notes", nil], ["number", 732], ["position", "Position 732"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 733 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 732"], ["notes", nil], ["number", 733], ["position", "Position 733"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 734 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 733"], ["notes", nil], ["number", 734], ["position", "Position 734"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 735 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 734"], ["notes", nil], ["number", 735], ["position", "Position 735"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 736 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 735"], ["notes", nil], ["number", 736], ["position", "Position 736"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 737 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 736"], ["notes", nil], ["number", 737], ["position", "Position 737"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 738 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 737"], ["notes", nil], ["number", 738], ["position", "Position 738"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 739 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 738"], ["notes", nil], ["number", 739], ["position", "Position 739"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 740 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 739"], ["notes", nil], ["number", 740], ["position", "Position 740"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 741 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 740"], ["notes", nil], ["number", 741], ["position", "Position 741"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 742 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 741"], ["notes", nil], ["number", 742], ["position", "Position 742"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 743 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 742"], ["notes", nil], ["number", 743], ["position", "Position 743"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 744 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 743"], ["notes", nil], ["number", 744], ["position", "Position 744"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 745 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 744"], ["notes", nil], ["number", 745], ["position", "Position 745"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 746 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 745"], ["notes", nil], ["number", 746], ["position", "Position 746"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 747 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 746"], ["notes", nil], ["number", 747], ["position", "Position 747"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 748 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 747"], ["notes", nil], ["number", 748], ["position", "Position 748"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 749 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 748"], ["notes", nil], ["number", 749], ["position", "Position 749"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 750 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 749"], ["notes", nil], ["number", 750], ["position", "Position 750"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 751 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 750"], ["notes", nil], ["number", 751], ["position", "Position 751"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 752 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 751"], ["notes", nil], ["number", 752], ["position", "Position 752"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 753 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 752"], ["notes", nil], ["number", 753], ["position", "Position 753"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 754 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 753"], ["notes", nil], ["number", 754], ["position", "Position 754"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 755 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 754"], ["notes", nil], ["number", 755], ["position", "Position 755"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 756 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 755"], ["notes", nil], ["number", 756], ["position", "Position 756"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 757 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 756"], ["notes", nil], ["number", 757], ["position", "Position 757"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 758 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 757"], ["notes", nil], ["number", 758], ["position", "Position 758"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 759 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 758"], ["notes", nil], ["number", 759], ["position", "Position 759"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 760 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 759"], ["notes", nil], ["number", 760], ["position", "Position 760"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 761 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 760"], ["notes", nil], ["number", 761], ["position", "Position 761"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 762 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 761"], ["notes", nil], ["number", 762], ["position", "Position 762"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 763 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 762"], ["notes", nil], ["number", 763], ["position", "Position 763"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 764 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 763"], ["notes", nil], ["number", 764], ["position", "Position 764"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 765 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 764"], ["notes", nil], ["number", 765], ["position", "Position 765"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 766 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 765"], ["notes", nil], ["number", 766], ["position", "Position 766"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 767 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 766"], ["notes", nil], ["number", 767], ["position", "Position 767"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 768 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 767"], ["notes", nil], ["number", 768], ["position", "Position 768"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 769 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 768"], ["notes", nil], ["number", 769], ["position", "Position 769"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 770 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 769"], ["notes", nil], ["number", 770], ["position", "Position 770"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 771 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 770"], ["notes", nil], ["number", 771], ["position", "Position 771"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 772 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 771"], ["notes", nil], ["number", 772], ["position", "Position 772"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 773 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 772"], ["notes", nil], ["number", 773], ["position", "Position 773"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 774 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 773"], ["notes", nil], ["number", 774], ["position", "Position 774"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 775 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 774"], ["notes", nil], ["number", 775], ["position", "Position 775"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 776 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 775"], ["notes", nil], ["number", 776], ["position", "Position 776"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 777 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 776"], ["notes", nil], ["number", 777], ["position", "Position 777"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 778 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 777"], ["notes", nil], ["number", 778], ["position", "Position 778"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 779 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 778"], ["notes", nil], ["number", 779], ["position", "Position 779"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 780 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 779"], ["notes", nil], ["number", 780], ["position", "Position 780"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 781 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 780"], ["notes", nil], ["number", 781], ["position", "Position 781"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 782 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 781"], ["notes", nil], ["number", 782], ["position", "Position 782"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 783 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 782"], ["notes", nil], ["number", 783], ["position", "Position 783"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 784 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 783"], ["notes", nil], ["number", 784], ["position", "Position 784"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 785 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 784"], ["notes", nil], ["number", 785], ["position", "Position 785"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 786 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 785"], ["notes", nil], ["number", 786], ["position", "Position 786"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 787 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 786"], ["notes", nil], ["number", 787], ["position", "Position 787"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 788 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 787"], ["notes", nil], ["number", 788], ["position", "Position 788"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 789 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 788"], ["notes", nil], ["number", 789], ["position", "Position 789"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 790 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 789"], ["notes", nil], ["number", 790], ["position", "Position 790"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 791 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 790"], ["notes", nil], ["number", 791], ["position", "Position 791"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 792 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 791"], ["notes", nil], ["number", 792], ["position", "Position 792"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 793 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 792"], ["notes", nil], ["number", 793], ["position", "Position 793"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 794 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 793"], ["notes", nil], ["number", 794], ["position", "Position 794"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 795 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 794"], ["notes", nil], ["number", 795], ["position", "Position 795"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 796 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 795"], ["notes", nil], ["number", 796], ["position", "Position 796"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 797 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 796"], ["notes", nil], ["number", 797], ["position", "Position 797"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 798 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 797"], ["notes", nil], ["number", 798], ["position", "Position 798"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 799 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 798"], ["notes", nil], ["number", 799], ["position", "Position 799"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 800 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 799"], ["notes", nil], ["number", 800], ["position", "Position 800"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 801 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 800"], ["notes", nil], ["number", 801], ["position", "Position 801"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 802 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 801"], ["notes", nil], ["number", 802], ["position", "Position 802"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 803 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 802"], ["notes", nil], ["number", 803], ["position", "Position 803"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 804 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 803"], ["notes", nil], ["number", 804], ["position", "Position 804"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 805 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 804"], ["notes", nil], ["number", 805], ["position", "Position 805"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 806 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 805"], ["notes", nil], ["number", 806], ["position", "Position 806"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 807 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 806"], ["notes", nil], ["number", 807], ["position", "Position 807"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 808 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 807"], ["notes", nil], ["number", 808], ["position", "Position 808"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 809 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 808"], ["notes", nil], ["number", 809], ["position", "Position 809"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 810 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 809"], ["notes", nil], ["number", 810], ["position", "Position 810"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 811 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 810"], ["notes", nil], ["number", 811], ["position", "Position 811"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 812 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 811"], ["notes", nil], ["number", 812], ["position", "Position 812"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 813 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 812"], ["notes", nil], ["number", 813], ["position", "Position 813"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 814 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 813"], ["notes", nil], ["number", 814], ["position", "Position 814"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 815 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 814"], ["notes", nil], ["number", 815], ["position", "Position 815"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 816 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 815"], ["notes", nil], ["number", 816], ["position", "Position 816"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 817 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 816"], ["notes", nil], ["number", 817], ["position", "Position 817"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 818 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 817"], ["notes", nil], ["number", 818], ["position", "Position 818"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 819 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 818"], ["notes", nil], ["number", 819], ["position", "Position 819"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 820 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 819"], ["notes", nil], ["number", 820], ["position", "Position 820"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 821 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 820"], ["notes", nil], ["number", 821], ["position", "Position 821"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 822 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 821"], ["notes", nil], ["number", 822], ["position", "Position 822"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 823 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 822"], ["notes", nil], ["number", 823], ["position", "Position 823"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 824 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 823"], ["notes", nil], ["number", 824], ["position", "Position 824"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 825 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 824"], ["notes", nil], ["number", 825], ["position", "Position 825"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 826 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 825"], ["notes", nil], ["number", 826], ["position", "Position 826"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 827 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 826"], ["notes", nil], ["number", 827], ["position", "Position 827"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 828 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 827"], ["notes", nil], ["number", 828], ["position", "Position 828"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 829 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 828"], ["notes", nil], ["number", 829], ["position", "Position 829"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 830 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 829"], ["notes", nil], ["number", 830], ["position", "Position 830"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 831 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 830"], ["notes", nil], ["number", 831], ["position", "Position 831"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 832 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 831"], ["notes", nil], ["number", 832], ["position", "Position 832"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 833 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 832"], ["notes", nil], ["number", 833], ["position", "Position 833"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 834 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 833"], ["notes", nil], ["number", 834], ["position", "Position 834"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 835 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 834"], ["notes", nil], ["number", 835], ["position", "Position 835"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 836 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 835"], ["notes", nil], ["number", 836], ["position", "Position 836"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 837 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 836"], ["notes", nil], ["number", 837], ["position", "Position 837"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 838 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 837"], ["notes", nil], ["number", 838], ["position", "Position 838"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 839 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 838"], ["notes", nil], ["number", 839], ["position", "Position 839"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 840 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 839"], ["notes", nil], ["number", 840], ["position", "Position 840"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 841 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 840"], ["notes", nil], ["number", 841], ["position", "Position 841"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 842 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 841"], ["notes", nil], ["number", 842], ["position", "Position 842"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 843 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 842"], ["notes", nil], ["number", 843], ["position", "Position 843"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 844 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 843"], ["notes", nil], ["number", 844], ["position", "Position 844"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 845 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 844"], ["notes", nil], ["number", 845], ["position", "Position 845"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 846 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 845"], ["notes", nil], ["number", 846], ["position", "Position 846"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 847 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 846"], ["notes", nil], ["number", 847], ["position", "Position 847"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 848 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 847"], ["notes", nil], ["number", 848], ["position", "Position 848"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 849 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 848"], ["notes", nil], ["number", 849], ["position", "Position 849"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 850 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 849"], ["notes", nil], ["number", 850], ["position", "Position 850"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 851 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 850"], ["notes", nil], ["number", 851], ["position", "Position 851"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 852 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 851"], ["notes", nil], ["number", 852], ["position", "Position 852"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 853 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 852"], ["notes", nil], ["number", 853], ["position", "Position 853"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 854 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 853"], ["notes", nil], ["number", 854], ["position", "Position 854"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 855 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 854"], ["notes", nil], ["number", 855], ["position", "Position 855"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 856 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 855"], ["notes", nil], ["number", 856], ["position", "Position 856"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 857 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 856"], ["notes", nil], ["number", 857], ["position", "Position 857"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 858 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 857"], ["notes", nil], ["number", 858], ["position", "Position 858"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 859 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 858"], ["notes", nil], ["number", 859], ["position", "Position 859"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 860 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 859"], ["notes", nil], ["number", 860], ["position", "Position 860"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 861 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 860"], ["notes", nil], ["number", 861], ["position", "Position 861"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 862 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 861"], ["notes", nil], ["number", 862], ["position", "Position 862"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 863 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 862"], ["notes", nil], ["number", 863], ["position", "Position 863"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 864 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 863"], ["notes", nil], ["number", 864], ["position", "Position 864"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 865 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 864"], ["notes", nil], ["number", 865], ["position", "Position 865"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 866 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 865"], ["notes", nil], ["number", 866], ["position", "Position 866"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 867 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 866"], ["notes", nil], ["number", 867], ["position", "Position 867"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 868 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 867"], ["notes", nil], ["number", 868], ["position", "Position 868"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 869 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 868"], ["notes", nil], ["number", 869], ["position", "Position 869"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 870 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 869"], ["notes", nil], ["number", 870], ["position", "Position 870"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 871 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 870"], ["notes", nil], ["number", 871], ["position", "Position 871"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 872 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 871"], ["notes", nil], ["number", 872], ["position", "Position 872"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 873 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 872"], ["notes", nil], ["number", 873], ["position", "Position 873"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 874 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 873"], ["notes", nil], ["number", 874], ["position", "Position 874"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 875 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 874"], ["notes", nil], ["number", 875], ["position", "Position 875"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 876 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 875"], ["notes", nil], ["number", 876], ["position", "Position 876"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 877 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 876"], ["notes", nil], ["number", 877], ["position", "Position 877"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 878 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 877"], ["notes", nil], ["number", 878], ["position", "Position 878"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 879 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 878"], ["notes", nil], ["number", 879], ["position", "Position 879"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 880 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 879"], ["notes", nil], ["number", 880], ["position", "Position 880"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 881 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 880"], ["notes", nil], ["number", 881], ["position", "Position 881"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 882 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 881"], ["notes", nil], ["number", 882], ["position", "Position 882"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 883 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 882"], ["notes", nil], ["number", 883], ["position", "Position 883"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 884 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 883"], ["notes", nil], ["number", 884], ["position", "Position 884"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 885 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 884"], ["notes", nil], ["number", 885], ["position", "Position 885"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 886 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 885"], ["notes", nil], ["number", 886], ["position", "Position 886"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 887 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 886"], ["notes", nil], ["number", 887], ["position", "Position 887"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 888 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 887"], ["notes", nil], ["number", 888], ["position", "Position 888"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 889 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 888"], ["notes", nil], ["number", 889], ["position", "Position 889"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 890 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 889"], ["notes", nil], ["number", 890], ["position", "Position 890"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 891 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 890"], ["notes", nil], ["number", 891], ["position", "Position 891"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 892 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 891"], ["notes", nil], ["number", 892], ["position", "Position 892"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 893 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 892"], ["notes", nil], ["number", 893], ["position", "Position 893"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 894 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 893"], ["notes", nil], ["number", 894], ["position", "Position 894"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 895 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 894"], ["notes", nil], ["number", 895], ["position", "Position 895"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 896 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 895"], ["notes", nil], ["number", 896], ["position", "Position 896"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 897 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 896"], ["notes", nil], ["number", 897], ["position", "Position 897"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 898 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 897"], ["notes", nil], ["number", 898], ["position", "Position 898"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?page=8" for 127.0.0.1 at 2012-06-29 13:08:12 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:12.769525', "current_sign_in_at" = '2012-06-29 19:08:12.769525', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:12.769898', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"page"=>"8", "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 140  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 179ms (Views: 159.1ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 899 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 898"], ["notes", nil], ["number", 899], ["position", "Position 899"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 900 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 899"], ["notes", nil], ["number", 900], ["position", "Position 900"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:12 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:12.972537', "current_sign_in_at" = '2012-06-29 19:08:12.972537', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:12.972945', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 112ms (Views: 92.0ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 901 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 900"], ["notes", nil], ["number", 901], ["position", "Position 901"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 902 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 901"], ["notes", nil], ["number", 902], ["position", "Position 902"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 903 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 902"], ["notes", nil], ["number", 903], ["position", "Position 903"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 904 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 903"], ["notes", nil], ["number", 904], ["position", "Position 904"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 905 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 904"], ["notes", nil], ["number", 905], ["position", "Position 905"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 906 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 905"], ["notes", nil], ["number", 906], ["position", "Position 906"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 907 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 906"], ["notes", nil], ["number", 907], ["position", "Position 907"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 908 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 907"], ["notes", nil], ["number", 908], ["position", "Position 908"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 909 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 908"], ["notes", nil], ["number", 909], ["position", "Position 909"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 910 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 909"], ["notes", nil], ["number", 910], ["position", "Position 910"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 911 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 910"], ["notes", nil], ["number", 911], ["position", "Position 911"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 912 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 911"], ["notes", nil], ["number", 912], ["position", "Position 912"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 913 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 912"], ["notes", nil], ["number", 913], ["position", "Position 913"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 914 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 913"], ["notes", nil], ["number", 914], ["position", "Position 914"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 915 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 914"], ["notes", nil], ["number", 915], ["position", "Position 915"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 916 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 915"], ["notes", nil], ["number", 916], ["position", "Position 916"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 917 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 916"], ["notes", nil], ["number", 917], ["position", "Position 917"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 918 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 917"], ["notes", nil], ["number", 918], ["position", "Position 918"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 919 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 918"], ["notes", nil], ["number", 919], ["position", "Position 919"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 920 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 919"], ["notes", nil], ["number", 920], ["position", "Position 920"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 921 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 920"], ["notes", nil], ["number", 921], ["position", "Position 921"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:13 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:13.130446', "current_sign_in_at" = '2012-06-29 19:08:13.130446', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:13.130836', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 172ms (Views: 152.3ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/545-typo" for 127.0.0.1 at 2012-06-29 13:08:13 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:13.609111', "current_sign_in_at" = '2012-06-29 19:08:13.609111', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:13.609422', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"ball", "id"=>"545-typo"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 545 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "balls"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 404 Not Found in 94ms (Views: 71.3ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "green"], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball" for 127.0.0.1 at 2012-06-29 13:08:13 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:13.716378', "current_sign_in_at" = '2012-06-29 19:08:13.716378', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:13.716773', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"ball"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "balls"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 49ms (Views: 30.9ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:08:13 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:13.774922', "current_sign_in_at" = '2012-06-29 19:08:13.774922', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:13.775287', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"cms~basic_page"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 27.1ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:13 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["name", "League 1"], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["name", "League 2"], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 922 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 921"], ["notes", nil], ["number", 922], ["position", "Position 922"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 923 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 922"], ["notes", nil], ["number", 923], ["position", "Position 923"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 924 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 923"], ["notes", nil], ["number", 924], ["position", "Position 924"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 925 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 924"], ["notes", nil], ["number", 925], ["position", "Position 925"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 926 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 925"], ["notes", nil], ["number", 926], ["position", "Position 926"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 927 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 926"], ["notes", nil], ["number", 927], ["position", "Position 927"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 928 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 927"], ["notes", nil], ["number", 928], ["position", "Position 928"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 929 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 928"], ["notes", nil], ["number", 929], ["position", "Position 929"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 930 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 929"], ["notes", nil], ["number", 930], ["position", "Position 930"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 931 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 930"], ["notes", nil], ["number", 931], ["position", "Position 931"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 932 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 931"], ["notes", nil], ["number", 932], ["position", "Position 932"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 933 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 932"], ["notes", nil], ["number", 933], ["position", "Position 933"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 934 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 933"], ["notes", nil], ["number", 934], ["position", "Position 934"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 935 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 934"], ["notes", nil], ["number", 935], ["position", "Position 935"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 936 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 935"], ["notes", nil], ["number", 936], ["position", "Position 936"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 937 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 936"], ["notes", nil], ["number", 937], ["position", "Position 937"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 938 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 937"], ["notes", nil], ["number", 938], ["position", "Position 938"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 939 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 938"], ["notes", nil], ["number", 939], ["position", "Position 939"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 940 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 939"], ["notes", nil], ["number", 940], ["position", "Position 940"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 941 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 940"], ["notes", nil], ["number", 941], ["position", "Position 941"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 942 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 941"], ["notes", nil], ["number", 942], ["position", "Position 942"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 943 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 942"], ["notes", nil], ["number", 943], ["position", "Position 943"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 944 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 943"], ["notes", nil], ["number", 944], ["position", "Position 944"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 945 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 944"], ["notes", nil], ["number", 945], ["position", "Position 945"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 946 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 945"], ["notes", nil], ["number", 946], ["position", "Position 946"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 947 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 946"], ["notes", nil], ["number", 947], ["position", "Position 947"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 948 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 947"], ["notes", nil], ["number", 948], ["position", "Position 948"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 949 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 948"], ["notes", nil], ["number", 949], ["position", "Position 949"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 950 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 949"], ["notes", nil], ["number", 950], ["position", "Position 950"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 951 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 950"], ["notes", nil], ["number", 951], ["position", "Position 951"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 952 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 951"], ["notes", nil], ["number", 952], ["position", "Position 952"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 953 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 952"], ["notes", nil], ["number", 953], ["position", "Position 953"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 954 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 953"], ["notes", nil], ["number", 954], ["position", "Position 954"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 955 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 954"], ["notes", nil], ["number", 955], ["position", "Position 955"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 956 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 955"], ["notes", nil], ["number", 956], ["position", "Position 956"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 957 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 956"], ["notes", nil], ["number", 957], ["position", "Position 957"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 958 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 957"], ["notes", nil], ["number", 958], ["position", "Position 958"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 959 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 958"], ["notes", nil], ["number", 959], ["position", "Position 959"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 960 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 959"], ["notes", nil], ["number", 960], ["position", "Position 960"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 961 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 960"], ["notes", nil], ["number", 961], ["position", "Position 961"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 962 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 961"], ["notes", nil], ["number", 962], ["position", "Position 962"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 963 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 962"], ["notes", nil], ["number", 963], ["position", "Position 963"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 964 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 963"], ["notes", nil], ["number", 964], ["position", "Position 964"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 965 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 964"], ["notes", nil], ["number", 965], ["position", "Position 965"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 966 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 965"], ["notes", nil], ["number", 966], ["position", "Position 966"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 967 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 966"], ["notes", nil], ["number", 967], ["position", "Position 967"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 968 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 967"], ["notes", nil], ["number", 968], ["position", "Position 968"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 969 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 968"], ["notes", nil], ["number", 969], ["position", "Position 969"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 970 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 969"], ["notes", nil], ["number", 970], ["position", "Position 970"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 971 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 970"], ["notes", nil], ["number", 971], ["position", "Position 971"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 972 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 971"], ["notes", nil], ["number", 972], ["position", "Position 972"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 973 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 972"], ["notes", nil], ["number", 973], ["position", "Position 973"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 974 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 973"], ["notes", nil], ["number", 974], ["position", "Position 974"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 975 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 974"], ["notes", nil], ["number", 975], ["position", "Position 975"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 976 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 975"], ["notes", nil], ["number", 976], ["position", "Position 976"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 977 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 976"], ["notes", nil], ["number", 977], ["position", "Position 977"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 978 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 977"], ["notes", nil], ["number", 978], ["position", "Position 978"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 979 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 978"], ["notes", nil], ["number", 979], ["position", "Position 979"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 980 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 979"], ["notes", nil], ["number", 980], ["position", "Position 980"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 981 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 980"], ["notes", nil], ["number", 981], ["position", "Position 981"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 982 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 981"], ["notes", nil], ["number", 982], ["position", "Position 982"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 983 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 982"], ["notes", nil], ["number", 983], ["position", "Position 983"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 984 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 983"], ["notes", nil], ["number", 984], ["position", "Position 984"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 985 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 984"], ["notes", nil], ["number", 985], ["position", "Position 985"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 986 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 985"], ["notes", nil], ["number", 986], ["position", "Position 986"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 987 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 986"], ["notes", nil], ["number", 987], ["position", "Position 987"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 988 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 987"], ["notes", nil], ["number", 988], ["position", "Position 988"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 989 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 988"], ["notes", nil], ["number", 989], ["position", "Position 989"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 990 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 989"], ["notes", nil], ["number", 990], ["position", "Position 990"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 991 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 990"], ["notes", nil], ["number", 991], ["position", "Position 991"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 992 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 991"], ["notes", nil], ["number", 992], ["position", "Position 992"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 993 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 992"], ["notes", nil], ["number", 993], ["position", "Position 993"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 994 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 993"], ["notes", nil], ["number", 994], ["position", "Position 994"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 995 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 994"], ["notes", nil], ["number", 995], ["position", "Position 995"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 996 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 995"], ["notes", nil], ["number", 996], ["position", "Position 996"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 997 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 996"], ["notes", nil], ["number", 997], ["position", "Position 997"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 998 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 997"], ["notes", nil], ["number", 998], ["position", "Position 998"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 999 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 998"], ["notes", nil], ["number", 999], ["position", "Position 999"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1000 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 999"], ["notes", nil], ["number", 1000], ["position", "Position 1000"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1001 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1000"], ["notes", nil], ["number", 1001], ["position", "Position 1001"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1002 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1001"], ["notes", nil], ["number", 1002], ["position", "Position 1002"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1003 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1002"], ["notes", nil], ["number", 1003], ["position", "Position 1003"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1004 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1003"], ["notes", nil], ["number", 1004], ["position", "Position 1004"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1005 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1004"], ["notes", nil], ["number", 1005], ["position", "Position 1005"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1006 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1005"], ["notes", nil], ["number", 1006], ["position", "Position 1006"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1007 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1006"], ["notes", nil], ["number", 1007], ["position", "Position 1007"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1008 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1007"], ["notes", nil], ["number", 1008], ["position", "Position 1008"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1009 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1008"], ["notes", nil], ["number", 1009], ["position", "Position 1009"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1010 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1009"], ["notes", nil], ["number", 1010], ["position", "Position 1010"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1011 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1010"], ["notes", nil], ["number", 1011], ["position", "Position 1011"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1012 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1011"], ["notes", nil], ["number", 1012], ["position", "Position 1012"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1013 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1012"], ["notes", nil], ["number", 1013], ["position", "Position 1013"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1014 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1013"], ["notes", nil], ["number", 1014], ["position", "Position 1014"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1015 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1014"], ["notes", nil], ["number", 1015], ["position", "Position 1015"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1016 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1015"], ["notes", nil], ["number", 1016], ["position", "Position 1016"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1017 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1016"], ["notes", nil], ["number", 1017], ["position", "Position 1017"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1018 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1017"], ["notes", nil], ["number", 1018], ["position", "Position 1018"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1019 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1018"], ["notes", nil], ["number", 1019], ["position", "Position 1019"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1020 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1019"], ["notes", nil], ["number", 1020], ["position", "Position 1020"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1021 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1020"], ["notes", nil], ["number", 1021], ["position", "Position 1021"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "players"   (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "players"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["custom_field", nil], ["division_id", 38], ["founded", 38], ["logo_url", nil], ["losses", 38], ["manager", "Manager 38"], ["mascot", nil], ["name", "Team 37"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["win_percentage", 38.0], ["wins", 38]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_1@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_1@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:08:14.501997' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:08:14 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.507098', "current_sign_in_at" = '2012-06-29 19:08:14.507098', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.507491', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.508366', "current_sign_in_at" = '2012-06-29 19:08:14.508366', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.508580', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Completed 500 Internal Server Error in 20ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `index' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:469:in `_run__3944507690903674606__process_action__1491756338810161399__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:101:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_2@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_2@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:08:14.638568' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1022 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1021"], ["notes", nil], ["number", 1022], ["position", "Position 1022"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1023 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1022"], ["notes", nil], ["number", 1023], ["position", "Position 1023"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:14 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.650372', "current_sign_in_at" = '2012-06-29 19:08:14.650372', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.650744', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.651690', "current_sign_in_at" = '2012-06-29 19:08:14.651690', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.651902', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 35ms (Views: 13.6ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_3@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_3@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:08:14.700440' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:14 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.705152', "current_sign_in_at" = '2012-06-29 19:08:14.705152', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.705547', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.706488', "current_sign_in_at" = '2012-06-29 19:08:14.706488', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.706704', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.9ms) Completed 200 OK in 28ms (Views: 7.4ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_4@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_4@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:08:14.747779' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:14 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.752560', "current_sign_in_at" = '2012-06-29 19:08:14.752560', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.752952', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.753851', "current_sign_in_at" = '2012-06-29 19:08:14.753851', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.754070', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"} Completed 500 Internal Server Error in 20ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `new' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:469:in `_run__3944507690903674606__process_action__1685369721708511460__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:106:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_5@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_5@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "updated_at" = '2012-06-29 19:08:14.889190', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:14 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.891297', "current_sign_in_at" = '2012-06-29 19:08:14.891297', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.891681', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.892544', "current_sign_in_at" = '2012-06-29 19:08:14.892544', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.892769', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Completed 500 Internal Server Error in 3ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:13:in `initialize' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `new' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `block in authorize_with' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `instance_eval' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `_authorize!' activesupport (3.2.6) lib/active_support/callbacks.rb:429:in `_run__3944507690903674606__process_action__1491756338810161399__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:59:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_6@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_6@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:14 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "updated_at" = '2012-06-29 19:08:14.968552', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:08:14 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.970611', "current_sign_in_at" = '2012-06-29 19:08:14.970611', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.971004', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:14.971926', "current_sign_in_at" = '2012-06-29 19:08:14.971926', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:14.972152', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML Completed 500 Internal Server Error in 3ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:13:in `initialize' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `new' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `block in authorize_with' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `instance_eval' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `_authorize!' activesupport (3.2.6) lib/active_support/callbacks.rb:429:in `_run__3944507690903674606__process_action__1022473740684495484__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:54:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_7@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_7@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :manage_player ', "updated_at" = '2012-06-29 19:08:15.091547' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1024 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1023"], ["notes", nil], ["number", 1024], ["position", "Position 1024"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.098482', "current_sign_in_at" = '2012-06-29 19:08:15.098482', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.098859', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.099724', "current_sign_in_at" = '2012-06-29 19:08:15.099724', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.099937', "roles" = '--- - :admin - :manage_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 53ms (Views: 29.3ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:15 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.2ms) Completed 200 OK in 22ms (Views: 14.5ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_8@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_8@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:08:15.194906' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1025 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1024"], ["notes", nil], ["number", 1025], ["position", "Position 1025"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1026 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1025"], ["notes", nil], ["number", 1026], ["position", "Position 1026"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.204726', "current_sign_in_at" = '2012-06-29 19:08:15.204726', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.205217', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.206301', "current_sign_in_at" = '2012-06-29 19:08:15.206301', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.206536', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' AND "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 40ms (Views: 12.0ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_9@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_9@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:08:15.258216' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1027 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1026"], ["notes", nil], ["number", 1027], ["position", "Position 1027"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.265451', "current_sign_in_at" = '2012-06-29 19:08:15.265451', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.265825', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.266695', "current_sign_in_at" = '2012-06-29 19:08:15.266695', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.266904', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Completed 500 Internal Server Error in 23ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `delete' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3944507690903674606__process_action__4371212993149305657__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:263:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_10@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_10@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:08:15.369172' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1028 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1027"], ["notes", nil], ["number", 1028], ["position", "Position 1028"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.376288', "current_sign_in_at" = '2012-06-29 19:08:15.376288', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.376692', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.377624', "current_sign_in_at" = '2012-06-29 19:08:15.377624', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.377841', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 34ms (Views: 12.7ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:15 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1027"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["username", "username_10@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 10ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:15 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 28ms (Views: 19.4ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_11@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_11@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:08:15.465791' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1029 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1028"], ["notes", nil], ["number", 1029], ["position", "Position 1029"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1030 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1029"], ["notes", nil], ["number", 1030], ["position", "Position 1030"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.474303', "current_sign_in_at" = '2012-06-29 19:08:15.474303', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.474693', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.475576', "current_sign_in_at" = '2012-06-29 19:08:15.475576', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.475784', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' AND "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1028"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["username", "username_11@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 28ms (ActiveRecord: 0.6ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 2 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_12@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_12@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_13@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_13@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:08:15.517118' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.522409', "current_sign_in_at" = '2012-06-29 19:08:15.522409', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.522812', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.523769', "current_sign_in_at" = '2012-06-29 19:08:15.523769', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.523986', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.524613', "current_sign_in_at" = '2012-06-29 19:08:15.524613', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.524822', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 83ms (Views: 60.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_14@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_14@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_15@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_15@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:08:15.622394' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.627386', "current_sign_in_at" = '2012-06-29 19:08:15.627386', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.627770', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.628649', "current_sign_in_at" = '2012-06-29 19:08:15.628649', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.628860', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.629478', "current_sign_in_at" = '2012-06-29 19:08:15.629478', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.629685', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "teams" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 119ms (Views: 36.5ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_16@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_16@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_17@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_17@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:08:15.761884' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1031 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1030"], ["notes", nil], ["number", 1031], ["position", "Position 1031"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.768914', "current_sign_in_at" = '2012-06-29 19:08:15.768914', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.769343', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.770325', "current_sign_in_at" = '2012-06-29 19:08:15.770325', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.770542', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.771173', "current_sign_in_at" = '2012-06-29 19:08:15.771173', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.771386', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.6ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 81ms (Views: 59.2ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_18@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_18@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_19@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_19@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:08:15.866238' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1032 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1031"], ["notes", nil], ["number", 1032], ["position", "Position 1032"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.872961', "current_sign_in_at" = '2012-06-29 19:08:15.872961', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.873333', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.874194', "current_sign_in_at" = '2012-06-29 19:08:15.874194', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.874407', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.875025', "current_sign_in_at" = '2012-06-29 19:08:15.875025', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.875234', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 83ms (Views: 60.3ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_20@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_20@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_21@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_21@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:08:15.971527' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1033 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1032"], ["notes", nil], ["number", 1033], ["position", "Position 1033"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:15 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.978353', "current_sign_in_at" = '2012-06-29 19:08:15.978353', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.978717', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.979588', "current_sign_in_at" = '2012-06-29 19:08:15.979588', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.979814', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:15.980487', "current_sign_in_at" = '2012-06-29 19:08:15.980487', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:15.980723', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 48ms (Views: 26.0ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_22@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_22@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_23@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_23@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:08:16.040883' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1034 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1033"], ["notes", nil], ["number", 1034], ["position", "Position 1034"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.048055', "current_sign_in_at" = '2012-06-29 19:08:16.048055', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.048417', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.049270', "current_sign_in_at" = '2012-06-29 19:08:16.049270', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.049479', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.050089', "current_sign_in_at" = '2012-06-29 19:08:16.050089', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.050296', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 46ms (Views: 25.7ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_24@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_24@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :show_in_app_player ', "updated_at" = '2012-06-29 19:08:16.107817' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1035 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1034"], ["notes", nil], ["number", 1035], ["position", "Position 1035"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.114685', "current_sign_in_at" = '2012-06-29 19:08:16.114685', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.115080', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.115990', "current_sign_in_at" = '2012-06-29 19:08:16.115990', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.116201', "roles" = '--- - :admin - :read_player - :show_in_app_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 47ms (Views: 23.8ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:16 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.2ms) Completed 200 OK in 21ms (Views: 13.8ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_25@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_25@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :update_player ', "updated_at" = '2012-06-29 19:08:16.201880' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1036 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1035"], ["notes", nil], ["number", 1036], ["position", "Position 1036"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.209098', "current_sign_in_at" = '2012-06-29 19:08:16.209098', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.209493', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.210402', "current_sign_in_at" = '2012-06-29 19:08:16.210402', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.210624', "roles" = '--- - :admin - :read_player - :update_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Completed 500 Internal Server Error in 24ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `delete' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3944507690903674606__process_action__4371212993149305657__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:173:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_26@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_26@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :update_player ', "updated_at" = '2012-06-29 19:08:16.338336' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1037 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1036"], ["notes", nil], ["number", 1037], ["position", "Position 1037"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.345298', "current_sign_in_at" = '2012-06-29 19:08:16.345298', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.345674', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.346539', "current_sign_in_at" = '2012-06-29 19:08:16.346539', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.346755', "roles" = '--- - :admin - :read_player - :update_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Completed 500 Internal Server Error in 22ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `edit' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3944507690903674606__process_action__1257289679246383072__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:167:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_27@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_27@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :update_player ', "updated_at" = '2012-06-29 19:08:16.440431' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1038 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1037"], ["notes", nil], ["number", 1038], ["position", "Position 1038"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.447481', "current_sign_in_at" = '2012-06-29 19:08:16.447481', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.447869', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.448752', "current_sign_in_at" = '2012-06-29 19:08:16.448752', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.448970', "roles" = '--- - :admin - :read_player - :update_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE ('t'='f') ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE ('t'='f') ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.5ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE ('t'='f') ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 68ms (Views: 45.9ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:16 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Position 1038", "number"=>"1038", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1038 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "notes" = '', "updated_at" = '2012-06-29 19:08:16.537699' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["item", 1], ["message", "Changed name, notes"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["username", "username_27@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 14ms (ActiveRecord: 0.8ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:16 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 26ms (Views: 19.2ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_28@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_28@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :test_exception ', "updated_at" = '2012-06-29 19:08:16.580492' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1039 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1038"], ["notes", nil], ["number", 1039], ["position", "Position 1039"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1040 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1039"], ["notes", nil], ["number", 1040], ["position", "Position 1040"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.640671', "current_sign_in_at" = '2012-06-29 19:08:16.640671', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.641074', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.642021', "current_sign_in_at" = '2012-06-29 19:08:16.642021', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.642248', "roles" = '--- - :admin - :test_exception ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 't' AND "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["item", 2], ["message", "Destroyed Player 1039"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["username", "username_28@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 27ms (ActiveRecord: 0.6ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_29@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_29@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :test_exception ', "updated_at" = '2012-06-29 19:08:16.681244' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1041 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1040"], ["notes", nil], ["number", 1041], ["position", "Position 1041"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1042 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1041"], ["notes", nil], ["number", 1042], ["position", "Position 1042"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.689775', "current_sign_in_at" = '2012-06-29 19:08:16.689775', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.690160', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.691069', "current_sign_in_at" = '2012-06-29 19:08:16.691069', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.691290', "roles" = '--- - :admin - :test_exception ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 't' AND "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 49ms (Views: 24.4ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_30@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_30@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :create_player ', "updated_at" = '2012-06-29 19:08:16.752593' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1043 AND "players"."team_id" IS NULL) LIMIT 1 SQL (3.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1042"], ["notes", nil], ["number", 1043], ["position", "Position 1043"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.763294', "current_sign_in_at" = '2012-06-29 19:08:16.763294', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.763752', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.764836', "current_sign_in_at" = '2012-06-29 19:08:16.764836', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.765109', "roles" = '--- - :admin - :read_player - :create_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Completed 500 Internal Server Error in 22ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `edit' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3944507690903674606__process_action__1257289679246383072__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__25740158433233590__call__350185846967923841__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:139:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_31@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_31@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :create_player ', "updated_at" = '2012-06-29 19:08:16.862504' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:16 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.867529', "current_sign_in_at" = '2012-06-29 19:08:16.867529', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.867982', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:16.869005', "current_sign_in_at" = '2012-06-29 19:08:16.869005', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:16.869241', "roles" = '--- - :admin - :read_player - :create_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE ('t'='f') ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE ('t'='f') ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.3ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE ('t'='f') ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 64ms (Views: 43.9ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:08:16 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", true], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["username", "username_31@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 12ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:16 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.9ms) Completed 200 OK in 27ms (Views: 19.2ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_32@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_32@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:16 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :history_player ', "updated_at" = '2012-06-29 19:08:16.998509' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1044 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1043"], ["notes", nil], ["number", 1044], ["position", "Position 1044"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.005807', "current_sign_in_at" = '2012-06-29 19:08:17.005807', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.006199', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.007126', "current_sign_in_at" = '2012-06-29 19:08:17.007126', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.007340', "roles" = '--- - :admin - :read_player - :history_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 49ms (Views: 24.0ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:17 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 20ms (Views: 12.6ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["custom_field", nil], ["division_id", 39], ["founded", 39], ["logo_url", nil], ["losses", 39], ["manager", "Manager 39"], ["mascot", nil], ["name", "Team 38"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["win_percentage", 39.0], ["wins", 39]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.091715', "current_sign_in_at" = '2012-06-29 19:08:17.091715', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.092081', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 39 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.0ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.2ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 89ms (Views: 69.2ms | ActiveRecord: 0.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1045 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1044"], ["notes", nil], ["number", 1045], ["position", "Position 1045"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.192797', "current_sign_in_at" = '2012-06-29 19:08:17.192797', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.193179', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 80ms (Views: 60.7ms | ActiveRecord: 0.5ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1046 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1045"], ["notes", nil], ["number", 1046], ["position", "Position 1046"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.284777', "current_sign_in_at" = '2012-06-29 19:08:17.284777', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.285169', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.8ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 83ms (Views: 63.0ms | ActiveRecord: 0.6ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1047 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1046"], ["notes", nil], ["number", 1047], ["position", "Position 1047"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.462345', "current_sign_in_at" = '2012-06-29 19:08:17.462345', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.462703', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 82ms (Views: 62.6ms | ActiveRecord: 0.5ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1048 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1047"], ["notes", nil], ["number", 1048], ["position", "Position 1048"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.555955', "current_sign_in_at" = '2012-06-29 19:08:17.555955', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.556325', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.7ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 78ms (Views: 59.8ms | ActiveRecord: 0.5ms)  (1.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["name", "League 3"], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.646284', "current_sign_in_at" = '2012-06-29 19:08:17.646284', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.646638', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"league", "id"=>"1"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.6ms) Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 68ms (Views: 49.4ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "green"], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.724565', "current_sign_in_at" = '2012-06-29 19:08:17.724565', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.724940', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 47ms (Views: 28.6ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.780595', "current_sign_in_at" = '2012-06-29 19:08:17.780595', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.781016', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 404 Not Found in 57ms (Views: 35.4ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "green"], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball?sort=color" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.846853', "current_sign_in_at" = '2012-06-29 19:08:17.846853', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.847170', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"sort"=>"color", "model_name"=>"ball"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.color asc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "balls"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 50ms (Views: 31.6ms | ActiveRecord: 0.2ms) Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 24ms (Views: 20.4ms | ActiveRecord: 0.2ms) Started PUT "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "ball"=>{"color"=>"green"}, "return_to"=>"http://www.example.com/admin/ball?sort=color", "_continue"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Redirected to http://www.example.com/admin/ball?sort=color Filter chain halted as :check_for_cancel rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.2ms) Started GET "/admin/ball?sort=color" for 127.0.0.1 at 2012-06-29 13:08:17 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"sort"=>"color", "model_name"=>"ball"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.color asc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "balls" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 30ms (Views: 26.1ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["custom_field", nil], ["division_id", 40], ["founded", 40], ["logo_url", nil], ["losses", 40], ["manager", "Manager 40"], ["mascot", nil], ["name", "Team 39"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["win_percentage", 40.0], ["wins", 40]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["custom_field", nil], ["division_id", 41], ["founded", 41], ["logo_url", nil], ["losses", 41], ["manager", "Manager 41"], ["mascot", nil], ["name", "Team 40"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["win_percentage", 41.0], ["wins", 41]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["custom_field", nil], ["division_id", 42], ["founded", 42], ["logo_url", nil], ["losses", 42], ["manager", "Manager 42"], ["mascot", nil], ["name", "Team 41"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["win_percentage", 42.0], ["wins", 42]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00], ["name", "Fan 1"], ["updated_at", Fri, 29 Jun 2012 19:08:17 UTC +00:00]]  (0.1ms) INSERT INTO "fans_teams" ("fan_id", "team_id") VALUES (1, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan/1/edit" for 127.0.0.1 at 2012-06-29 13:08:17 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:17.980937', "current_sign_in_at" = '2012-06-29 19:08:17.980937', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:17.981334', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"fan", "id"=>"1"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" WHERE "fans"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "fans_teams" ON "teams"."id" = "fans_teams"."team_id" WHERE "fans_teams"."fan_id" = 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (42, 41, 40) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (46.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 96ms (Views: 76.8ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "League 4"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1049 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1048"], ["notes", nil], ["number", 1049], ["position", "Position 1049"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "League 5"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1050 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1049"], ["notes", nil], ["number", 1050], ["position", "Position 1050"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.109456', "current_sign_in_at" = '2012-06-29 19:08:18.109456', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.109927', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 1 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.0ms) SELECT COUNT(*) FROM "leagues" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 41ms (Views: 36.7ms | ActiveRecord: 0.3ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:18 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 44ms (Views: 37.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "League 6"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1051 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1050"], ["notes", nil], ["number", 1051], ["position", "Position 1051"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "League 7"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1052 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1051"], ["notes", nil], ["number", 1052], ["position", "Position 1052"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.216454', "current_sign_in_at" = '2012-06-29 19:08:18.216454', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.216866', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 1 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.0ms) SELECT COUNT(*) FROM "leagues" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 59ms (Views: 41.1ms | ActiveRecord: 0.3ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:18 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 122ms (Views: 115.8ms | ActiveRecord: 0.3ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "League 8"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1053 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1052"], ["notes", nil], ["number", 1053], ["position", "Position 1053"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "League 9"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1054 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1053"], ["notes", nil], ["number", 1054], ["position", "Position 1054"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.432501', "current_sign_in_at" = '2012-06-29 19:08:18.432501', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.432974', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 1 OFFSET 0 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.0ms) SELECT COUNT(*) FROM "leagues" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 35ms (Views: 31.5ms | ActiveRecord: 0.2ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:18 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 1 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 36ms (Views: 30.3ms | ActiveRecord: 0.3ms)  (2.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["custom_field", nil], ["division_id", 43], ["founded", 43], ["logo_url", nil], ["losses", 43], ["manager", "Manager 43"], ["mascot", nil], ["name", "Team 42"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["win_percentage", 43.0], ["wins", 43]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.524502', "current_sign_in_at" = '2012-06-29 19:08:18.524502', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.524910', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "teams"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 48ms (Views: 29.4ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["custom_field", nil], ["division_id", 44], ["founded", 44], ["logo_url", nil], ["losses", 44], ["manager", "Manager 44"], ["mascot", nil], ["name", "Team 43"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["win_percentage", 44.0], ["wins", 44]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1055 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1054"], ["notes", nil], ["number", 1055], ["position", "Position 1055"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1056 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1055"], ["notes", nil], ["number", 1056], ["position", "Position 1056"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.592673', "current_sign_in_at" = '2012-06-29 19:08:18.592673', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.593153', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id  (0.1ms) SELECT COUNT(*) FROM "teams" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 52ms (Views: 31.7ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.657432', "current_sign_in_at" = '2012-06-29 19:08:18.657432', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.657923', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 51ms (Views: 30.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.721374', "current_sign_in_at" = '2012-06-29 19:08:18.721374', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.721858', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 46ms (Views: 26.7ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.807370', "current_sign_in_at" = '2012-06-29 19:08:18.807370', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.807854', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "Fan 2"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["name", "Fan 3"], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.851049', "current_sign_in_at" = '2012-06-29 19:08:18.851049', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.851421', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 52ms (Views: 33.6ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:18 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:18 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:18.915339', "current_sign_in_at" = '2012-06-29 19:08:18.915339', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:18.915753', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 87ms (Views: 30.0ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["name", "Fan 4"], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["name", "Fan 5"], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.019709', "current_sign_in_at" = '2012-06-29 19:08:19.019709', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.020126', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 56ms (Views: 36.9ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.088094', "current_sign_in_at" = '2012-06-29 19:08:19.088094', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.088521', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 50ms (Views: 32.2ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.150417', "current_sign_in_at" = '2012-06-29 19:08:19.150417', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.150831', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 53ms (Views: 35.1ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.215733', "current_sign_in_at" = '2012-06-29 19:08:19.215733', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.216241', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 52ms (Views: 33.3ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.279738', "current_sign_in_at" = '2012-06-29 19:08:19.279738', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.280155', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 50ms (Views: 31.6ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.455294', "current_sign_in_at" = '2012-06-29 19:08:19.455294', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.455812', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 29ms (Views: 25.2ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.497380', "current_sign_in_at" = '2012-06-29 19:08:19.497380', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.497798', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 45ms (Views: 27.5ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["name", "Fan 6"], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["name", "Fan 7"], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.556710', "current_sign_in_at" = '2012-06-29 19:08:19.556710', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.557108', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 51ms (Views: 32.9ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.619548', "current_sign_in_at" = '2012-06-29 19:08:19.619548', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.620032', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 48ms (Views: 29.4ms | ActiveRecord: 0.1ms)  (1.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.710663', "current_sign_in_at" = '2012-06-29 19:08:19.710663', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.711125', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 30ms (Views: 25.8ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.752345', "current_sign_in_at" = '2012-06-29 19:08:19.752345', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.752764', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 47ms (Views: 29.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.808468', "current_sign_in_at" = '2012-06-29 19:08:19.808468', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.808848', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 29.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.867517', "current_sign_in_at" = '2012-06-29 19:08:19.867517', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.867917', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 44ms (Views: 26.4ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.924296', "current_sign_in_at" = '2012-06-29 19:08:19.924296', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.924719', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 47ms (Views: 28.9ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:19 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:19 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:19.979681', "current_sign_in_at" = '2012-06-29 19:08:19.979681', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:19.980097', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 89ms (Views: 69.7ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["name", "Fan 8"], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["name", "Fan 9"], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.082973', "current_sign_in_at" = '2012-06-29 19:08:20.082973', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.083383', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 57ms (Views: 38.5ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.153712', "current_sign_in_at" = '2012-06-29 19:08:20.153712', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.154164', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 29.4ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 18380) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 18380], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 22222) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 22222], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 72108) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 72108], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.221439', "current_sign_in_at" = '2012-06-29 19:08:20.221439', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.221888', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at asc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 60ms (Views: 39.7ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 88311) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 88311], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 53452) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 53452], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 10878) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 10878], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.302709', "current_sign_in_at" = '2012-06-29 19:08:20.302709', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.303114', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 57ms (Views: 39.1ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 22222) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 22222], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 72108) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 72108], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 88311) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 88311], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["name", "American"], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["name", "Florida State"], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["name", "National"], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.481503', "current_sign_in_at" = '2012-06-29 19:08:20.481503', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.481977', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.2ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.created_at desc LIMIT 20 OFFSET 0 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 3 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 3 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.1ms) SELECT COUNT(*) FROM "leagues" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 43ms (Views: 38.8ms | ActiveRecord: 0.5ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:20 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 31ms (Views: 27.7ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 53452) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 53452], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 10878) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 10878], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 74734) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 74734], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.580839', "current_sign_in_at" = '2012-06-29 19:08:20.580839', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.581217', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 52ms (Views: 34.8ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 48340) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 48340], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 72612) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 72612], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 34609) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 34609], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:20 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:20.667377', "current_sign_in_at" = '2012-06-29 19:08:20.667377', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:20.667855', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 35ms (Views: 31.7ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 45], ["founded", 45], ["logo_url", nil], ["losses", 45], ["manager", "Manager 45"], ["mascot", nil], ["name", "Team 44"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 45.0], ["wins", 45]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 46], ["founded", 46], ["logo_url", nil], ["losses", 46], ["manager", "Manager 46"], ["mascot", nil], ["name", "Team 45"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 46.0], ["wins", 46]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 47], ["founded", 47], ["logo_url", nil], ["losses", 47], ["manager", "Manager 47"], ["mascot", nil], ["name", "Team 46"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 47.0], ["wins", 47]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 48], ["founded", 48], ["logo_url", nil], ["losses", 48], ["manager", "Manager 48"], ["mascot", nil], ["name", "Team 47"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 48.0], ["wins", 48]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 49], ["founded", 49], ["logo_url", nil], ["losses", 49], ["manager", "Manager 49"], ["mascot", nil], ["name", "Team 48"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 49.0], ["wins", 49]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 50], ["founded", 50], ["logo_url", nil], ["losses", 50], ["manager", "Manager 50"], ["mascot", nil], ["name", "Team 49"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 50.0], ["wins", 50]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 51], ["founded", 51], ["logo_url", nil], ["losses", 51], ["manager", "Manager 51"], ["mascot", nil], ["name", "Team 50"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 51.0], ["wins", 51]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 52], ["founded", 52], ["logo_url", nil], ["losses", 52], ["manager", "Manager 52"], ["mascot", nil], ["name", "Team 51"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 52.0], ["wins", 52]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 53], ["founded", 53], ["logo_url", nil], ["losses", 53], ["manager", "Manager 53"], ["mascot", nil], ["name", "Team 52"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 53.0], ["wins", 53]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 54], ["founded", 54], ["logo_url", nil], ["losses", 54], ["manager", "Manager 54"], ["mascot", nil], ["name", "Team 53"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 54.0], ["wins", 54]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 55], ["founded", 55], ["logo_url", nil], ["losses", 55], ["manager", "Manager 55"], ["mascot", nil], ["name", "Team 54"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 55.0], ["wins", 55]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 56], ["founded", 56], ["logo_url", nil], ["losses", 56], ["manager", "Manager 56"], ["mascot", nil], ["name", "Team 55"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 56.0], ["wins", 56]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 57], ["founded", 57], ["logo_url", nil], ["losses", 57], ["manager", "Manager 57"], ["mascot", nil], ["name", "Team 56"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 57.0], ["wins", 57]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 58], ["founded", 58], ["logo_url", nil], ["losses", 58], ["manager", "Manager 58"], ["mascot", nil], ["name", "Team 57"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 58.0], ["wins", 58]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 59], ["founded", 59], ["logo_url", nil], ["losses", 59], ["manager", "Manager 59"], ["mascot", nil], ["name", "Team 58"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 59.0], ["wins", 59]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 60], ["founded", 60], ["logo_url", nil], ["losses", 60], ["manager", "Manager 60"], ["mascot", nil], ["name", "Team 59"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 60.0], ["wins", 60]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 61], ["founded", 61], ["logo_url", nil], ["losses", 61], ["manager", "Manager 61"], ["mascot", nil], ["name", "Team 60"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 61.0], ["wins", 61]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 62], ["founded", 62], ["logo_url", nil], ["losses", 62], ["manager", "Manager 62"], ["mascot", nil], ["name", "Team 61"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 62.0], ["wins", 62]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 63], ["founded", 63], ["logo_url", nil], ["losses", 63], ["manager", "Manager 63"], ["mascot", nil], ["name", "Team 62"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 63.0], ["wins", 63]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 64], ["founded", 64], ["logo_url", nil], ["losses", 64], ["manager", "Manager 64"], ["mascot", nil], ["name", "Team 63"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 64.0], ["wins", 64]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 65], ["founded", 65], ["logo_url", nil], ["losses", 65], ["manager", "Manager 65"], ["mascot", nil], ["name", "Team 64"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 65.0], ["wins", 65]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 66], ["founded", 66], ["logo_url", nil], ["losses", 66], ["manager", "Manager 66"], ["mascot", nil], ["name", "Team 65"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 66.0], ["wins", 66]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 67], ["founded", 67], ["logo_url", nil], ["losses", 67], ["manager", "Manager 67"], ["mascot", nil], ["name", "Team 66"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 67.0], ["wins", 67]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 68], ["founded", 68], ["logo_url", nil], ["losses", 68], ["manager", "Manager 68"], ["mascot", nil], ["name", "Team 67"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 68.0], ["wins", 68]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 69], ["founded", 69], ["logo_url", nil], ["losses", 69], ["manager", "Manager 69"], ["mascot", nil], ["name", "Team 68"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 69.0], ["wins", 69]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 70], ["founded", 70], ["logo_url", nil], ["losses", 70], ["manager", "Manager 70"], ["mascot", nil], ["name", "Team 69"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 70.0], ["wins", 70]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 71], ["founded", 71], ["logo_url", nil], ["losses", 71], ["manager", "Manager 71"], ["mascot", nil], ["name", "Team 70"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 71.0], ["wins", 71]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 72], ["founded", 72], ["logo_url", nil], ["losses", 72], ["manager", "Manager 72"], ["mascot", nil], ["name", "Team 71"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 72.0], ["wins", 72]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 73], ["founded", 73], ["logo_url", nil], ["losses", 73], ["manager", "Manager 73"], ["mascot", nil], ["name", "Team 72"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 73.0], ["wins", 73]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 74], ["founded", 74], ["logo_url", nil], ["losses", 74], ["manager", "Manager 74"], ["mascot", nil], ["name", "Team 73"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 74.0], ["wins", 74]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 75], ["founded", 75], ["logo_url", nil], ["losses", 75], ["manager", "Manager 75"], ["mascot", nil], ["name", "Team 74"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 75.0], ["wins", 75]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 76], ["founded", 76], ["logo_url", nil], ["losses", 76], ["manager", "Manager 76"], ["mascot", nil], ["name", "Team 75"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 76.0], ["wins", 76]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 77], ["founded", 77], ["logo_url", nil], ["losses", 77], ["manager", "Manager 77"], ["mascot", nil], ["name", "Team 76"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 77.0], ["wins", 77]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 78], ["founded", 78], ["logo_url", nil], ["losses", 78], ["manager", "Manager 78"], ["mascot", nil], ["name", "Team 77"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 78.0], ["wins", 78]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 79], ["founded", 79], ["logo_url", nil], ["losses", 79], ["manager", "Manager 79"], ["mascot", nil], ["name", "Team 78"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 79.0], ["wins", 79]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 80], ["founded", 80], ["logo_url", nil], ["losses", 80], ["manager", "Manager 80"], ["mascot", nil], ["name", "Team 79"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 80.0], ["wins", 80]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 81], ["founded", 81], ["logo_url", nil], ["losses", 81], ["manager", "Manager 81"], ["mascot", nil], ["name", "Team 80"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 81.0], ["wins", 81]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 82], ["founded", 82], ["logo_url", nil], ["losses", 82], ["manager", "Manager 82"], ["mascot", nil], ["name", "Team 81"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 82.0], ["wins", 82]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 83], ["founded", 83], ["logo_url", nil], ["losses", 83], ["manager", "Manager 83"], ["mascot", nil], ["name", "Team 82"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 83.0], ["wins", 83]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 84], ["founded", 84], ["logo_url", nil], ["losses", 84], ["manager", "Manager 84"], ["mascot", nil], ["name", "Team 83"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 84.0], ["wins", 84]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.2ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45) Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 85], ["founded", 85], ["logo_url", nil], ["losses", 85], ["manager", "Manager 85"], ["mascot", nil], ["name", "Team 84"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 85.0], ["wins", 85]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1057 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1056"], ["notes", nil], ["number", 1057], ["position", "Position 1057"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1058 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1057"], ["notes", nil], ["number", 1058], ["position", "Position 1058"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1059 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1058"], ["notes", nil], ["number", 1059], ["position", "Position 1059"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1060 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1059"], ["notes", nil], ["number", 1060], ["position", "Position 1060"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 3  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 86], ["founded", 86], ["logo_url", nil], ["losses", 86], ["manager", "Manager 86"], ["mascot", nil], ["name", "Team 85"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 86.0], ["wins", 86]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1061 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1060"], ["notes", nil], ["number", 1061], ["position", "Position 1061"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1062 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1061"], ["notes", nil], ["number", 1062], ["position", "Position 1062"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 87], ["founded", 87], ["logo_url", nil], ["losses", 87], ["manager", "Manager 87"], ["mascot", nil], ["name", "Team 86"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 87.0], ["wins", 87]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "teams" SET "revenue" = 3.0, "updated_at" = '2012-06-29 19:08:20.891525' WHERE "teams"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1063 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1062"], ["notes", nil], ["number", 1063], ["position", "Position 1063"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1064 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1063"], ["notes", nil], ["number", 1064], ["position", "Position 1064"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1065 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1064"], ["notes", nil], ["number", 1065], ["position", "Position 1065"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1066 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1065"], ["notes", nil], ["number", 1066], ["position", "Position 1066"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1067 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1066"], ["notes", nil], ["number", 1067], ["position", "Position 1067"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 3  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["custom_field", nil], ["division_id", 88], ["founded", 88], ["logo_url", nil], ["losses", 88], ["manager", "Manager 88"], ["mascot", nil], ["name", "Team 87"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["win_percentage", 88.0], ["wins", 88]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1068 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1067"], ["notes", nil], ["number", 1068], ["position", "Position 1068"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1069 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1068"], ["notes", nil], ["number", 1069], ["position", "Position 1069"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1070 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1069"], ["notes", nil], ["number", 1070], ["position", "Position 1070"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1071 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1070"], ["notes", nil], ["number", 1071], ["position", "Position 1071"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1072 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1071"], ["notes", nil], ["number", 1072], ["position", "Position 1072"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1073 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1072"], ["notes", nil], ["number", 1073], ["position", "Position 1073"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1074 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1073"], ["notes", nil], ["number", 1074], ["position", "Position 1074"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1075 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1074"], ["notes", nil], ["number", 1075], ["position", "Position 1075"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1076 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1075"], ["notes", nil], ["number", 1076], ["position", "Position 1076"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1077 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1076"], ["notes", nil], ["number", 1077], ["position", "Position 1077"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1078 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1077"], ["notes", nil], ["number", 1078], ["position", "Position 1078"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1079 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1078"], ["notes", nil], ["number", 1079], ["position", "Position 1079"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1080 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1079"], ["notes", nil], ["number", 1080], ["position", "Position 1080"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1081 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1080"], ["notes", nil], ["number", 1081], ["position", "Position 1081"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1082 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1081"], ["notes", nil], ["number", 1082], ["position", "Position 1082"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1083 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1082"], ["notes", nil], ["number", 1083], ["position", "Position 1083"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1084 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1083"], ["notes", nil], ["number", 1084], ["position", "Position 1084"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1085 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1084"], ["notes", nil], ["number", 1085], ["position", "Position 1085"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1086 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1085"], ["notes", nil], ["number", 1086], ["position", "Position 1086"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1087 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1086"], ["notes", nil], ["number", 1087], ["position", "Position 1087"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1088 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1087"], ["notes", nil], ["number", 1088], ["position", "Position 1088"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1089 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1088"], ["notes", nil], ["number", 1089], ["position", "Position 1089"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1090 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1089"], ["notes", nil], ["number", 1090], ["position", "Position 1090"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1091 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1090"], ["notes", nil], ["number", 1091], ["position", "Position 1091"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1092 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1091"], ["notes", nil], ["number", 1092], ["position", "Position 1092"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1093 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1092"], ["notes", nil], ["number", 1093], ["position", "Position 1093"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1094 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1093"], ["notes", nil], ["number", 1094], ["position", "Position 1094"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1095 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1094"], ["notes", nil], ["number", 1095], ["position", "Position 1095"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1096 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1095"], ["notes", nil], ["number", 1096], ["position", "Position 1096"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1097 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1096"], ["notes", nil], ["number", 1097], ["position", "Position 1097"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1098 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1097"], ["notes", nil], ["number", 1098], ["position", "Position 1098"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1099 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1098"], ["notes", nil], ["number", 1099], ["position", "Position 1099"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1100 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1099"], ["notes", nil], ["number", 1100], ["position", "Position 1100"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1101 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1100"], ["notes", nil], ["number", 1101], ["position", "Position 1101"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1102 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1101"], ["notes", nil], ["number", 1102], ["position", "Position 1102"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1103 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1102"], ["notes", nil], ["number", 1103], ["position", "Position 1103"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1104 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1103"], ["notes", nil], ["number", 1104], ["position", "Position 1104"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1105 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1104"], ["notes", nil], ["number", 1105], ["position", "Position 1105"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1106 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1105"], ["notes", nil], ["number", 1106], ["position", "Position 1106"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1107 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1106"], ["notes", nil], ["number", 1107], ["position", "Position 1107"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 30 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 89], ["founded", 89], ["logo_url", nil], ["losses", 89], ["manager", "Manager 89"], ["mascot", nil], ["name", "Team 88"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 89.0], ["wins", 89]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1108 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1107"], ["notes", nil], ["number", 1108], ["position", "Position 1108"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1109 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1108"], ["notes", nil], ["number", 1109], ["position", "Position 1109"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1110 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1109"], ["notes", nil], ["number", 1110], ["position", "Position 1110"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 90], ["founded", 90], ["logo_url", nil], ["losses", 90], ["manager", "Manager 90"], ["mascot", nil], ["name", "Team 89"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 90.0], ["wins", 90]]  (0.0ms) RELEASE SAVEPOINT active_record_1 TeamWithNumberedPlayers Load (0.1ms) SELECT "teams".* FROM "teams" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 123 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1110"], ["notes", nil], ["number", 123], ["position", "Position 1111"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" IS NULL  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" LIMIT 1 Processing by RailsAdmin::MainController#index as JSON Parameters: {"model_name"=>"player", "source_object_id"=>1, "source_abstract_model"=>"team_with_numbered_players", "associated_collection"=>"numbered_players", "current_action"=>:create, "compact"=>true} TeamWithNumberedPlayers Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Completed 200 OK in 27ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1111 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1111"], ["notes", nil], ["number", 1111], ["position", "Position 1112"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1112 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1112"], ["notes", nil], ["number", 1112], ["position", "Position 1113"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1113 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1113"], ["notes", nil], ["number", 1113], ["position", "Position 1114"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1114 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1114"], ["notes", nil], ["number", 1114], ["position", "Position 1115"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 91], ["founded", 91], ["logo_url", nil], ["losses", 91], ["manager", "Manager 91"], ["mascot", nil], ["name", "Team 90"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 91.0], ["wins", 91]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 92], ["founded", 92], ["logo_url", nil], ["losses", 92], ["manager", "Manager 92"], ["mascot", nil], ["name", "Team 91"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 92.0], ["wins", 92]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1115 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1115"], ["notes", nil], ["number", 1115], ["position", "Position 1116"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 3"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 3], ["pick", 3], ["player_id", 5], ["round", 3], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --4-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --5-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.203472' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.204272' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1111 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:08:21.205764' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/export?all=true&csv=true&csv_options%5Bgenerator%5D%5Bcol_sep%5D=%2C&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=id&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=content&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=created_at&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=updated_at&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=id&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=created_at&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=updated_at&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=date&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=round&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=pick&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=overall&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=college&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=notes&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=id&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=created_at&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=updated_at&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=name&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=logo_url&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=manager&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=ballpark&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=mascot&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=founded&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=wins&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=losses&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=win_percentage&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=revenue&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=color&schema%5Bonly%5D%5B%5D=id&schema%5Bonly%5D%5B%5D=updated_at&schema%5Bonly%5D%5B%5D=deleted_at&schema%5Bonly%5D%5B%5D=name&schema%5Bonly%5D%5B%5D=position&schema%5Bonly%5D%5B%5D=number&schema%5Bonly%5D%5B%5D=retired&schema%5Bonly%5D%5B%5D=injured&schema%5Bonly%5D%5B%5D=born_on&schema%5Bonly%5D%5B%5D=notes&schema%5Bonly%5D%5B%5D=suspended" for 127.0.0.1 at 2012-06-29 13:08:21 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:21.212426', "current_sign_in_at" = '2012-06-29 19:08:21.212426', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:21.212896', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"all"=>"true", "csv"=>"true", "csv_options"=>{"generator"=>{"col_sep"=>","}}, "schema"=>{"include"=>{"comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color"]}}, "only"=>["id", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"]}, "model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 1 CACHE (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Completed 200 OK in 61ms (Views: 2.4ms | ActiveRecord: 1.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1116 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1116"], ["notes", nil], ["number", 1116], ["position", "Position 1117"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1117 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1117"], ["notes", nil], ["number", 1117], ["position", "Position 1118"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1118 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1118"], ["notes", nil], ["number", 1118], ["position", "Position 1119"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1119 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1119"], ["notes", nil], ["number", 1119], ["position", "Position 1120"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 93], ["founded", 93], ["logo_url", nil], ["losses", 93], ["manager", "Manager 93"], ["mascot", nil], ["name", "Team 92"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 93.0], ["wins", 93]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 94], ["founded", 94], ["logo_url", nil], ["losses", 94], ["manager", "Manager 94"], ["mascot", nil], ["name", "Team 93"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 94.0], ["wins", 94]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1120 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1120"], ["notes", nil], ["number", 1120], ["position", "Position 1121"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 4"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 4], ["pick", 4], ["player_id", 5], ["round", 4], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --6-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --7-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.302326' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.303051' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1116 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:08:21.304481' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:08:21 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:21.308683', "current_sign_in_at" = '2012-06-29 19:08:21.308683', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:21.309173', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 80ms (Views: 60.9ms | ActiveRecord: 0.0ms) Started POST "/admin/player/export?all=true" for 127.0.0.1 at 2012-06-29 13:08:21 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "created_at", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"], "include"=>{"team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color", "custom_field"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}}}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "xml"=>"", "all"=>"true", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Sent data player_2012-06-29_13h08m21.xml (0.4ms) Completed 200 OK in 21ms (Views: 0.3ms | ActiveRecord: 0.9ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1121 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1121"], ["notes", nil], ["number", 1121], ["position", "Position 1122"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1122 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1122"], ["notes", nil], ["number", 1122], ["position", "Position 1123"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1123 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1123"], ["notes", nil], ["number", 1123], ["position", "Position 1124"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1124 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1124"], ["notes", nil], ["number", 1124], ["position", "Position 1125"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 95], ["founded", 95], ["logo_url", nil], ["losses", 95], ["manager", "Manager 95"], ["mascot", nil], ["name", "Team 94"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 95.0], ["wins", 95]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 96], ["founded", 96], ["logo_url", nil], ["losses", 96], ["manager", "Manager 96"], ["mascot", nil], ["name", "Team 95"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 96.0], ["wins", 96]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1125 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1125"], ["notes", nil], ["number", 1125], ["position", "Position 1126"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 5"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 5], ["pick", 5], ["player_id", 5], ["round", 5], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --8-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --9-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.446349' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.446895' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1121 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:08:21.448216' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:08:21 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:21.452539', "current_sign_in_at" = '2012-06-29 19:08:21.452539', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:21.453047', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 84ms (Views: 63.7ms | ActiveRecord: 0.0ms) Started POST "/admin/player/export?all=true" for 127.0.0.1 at 2012-06-29 13:08:21 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "created_at", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"], "include"=>{"team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color", "custom_field"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}}}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "json"=>"", "all"=>"true", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Sent data player_2012-06-29_13h08m21.json (0.4ms) Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.8ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1126 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1126"], ["notes", nil], ["number", 1126], ["position", "Position 1127"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1127 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1127"], ["notes", nil], ["number", 1127], ["position", "Position 1128"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1128 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1128"], ["notes", nil], ["number", 1128], ["position", "Position 1129"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1129 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1129"], ["notes", nil], ["number", 1129], ["position", "Position 1130"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 97], ["founded", 97], ["logo_url", nil], ["losses", 97], ["manager", "Manager 97"], ["mascot", nil], ["name", "Team 96"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 97.0], ["wins", 97]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 98], ["founded", 98], ["logo_url", nil], ["losses", 98], ["manager", "Manager 98"], ["mascot", nil], ["name", "Team 97"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 98.0], ["wins", 98]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1130 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1130"], ["notes", nil], ["number", 1130], ["position", "Position 1131"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 6"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 6], ["pick", 6], ["player_id", 5], ["round", 6], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --10-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --11-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.587888' WHERE "comments"."id" = 1  (0.0ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.588451' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1126 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:08:21.589732' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:08:21 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:21.597099', "current_sign_in_at" = '2012-06-29 19:08:21.597099', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:21.597603', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 163ms (Views: 139.3ms | ActiveRecord: 0.0ms) Started POST "/admin/player/export?all=true" for 127.0.0.1 at 2012-06-29 13:08:21 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "created_at", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"], "include"=>{"team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color", "custom_field"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}}}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "csv"=>"", "all"=>"true", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 1 CACHE (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Sent data (0.4ms) Completed 200 OK in 28ms (Views: 0.3ms | ActiveRecord: 1.0ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"   (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1131 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1131"], ["notes", nil], ["number", 1131], ["position", "Position 1132"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1132 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1132"], ["notes", nil], ["number", 1132], ["position", "Position 1133"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1133 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1133"], ["notes", nil], ["number", 1133], ["position", "Position 1134"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1134 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1134"], ["notes", nil], ["number", 1134], ["position", "Position 1135"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 99], ["founded", 99], ["logo_url", nil], ["losses", 99], ["manager", "Manager 99"], ["mascot", nil], ["name", "Team 98"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 99.0], ["wins", 99]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["custom_field", nil], ["division_id", 100], ["founded", 100], ["logo_url", nil], ["losses", 100], ["manager", "Manager 100"], ["mascot", nil], ["name", "Team 99"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["win_percentage", 100.0], ["wins", 100]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1135 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1135"], ["notes", nil], ["number", 1135], ["position", "Position 1136"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 7"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 7], ["pick", 7], ["player_id", 5], ["round", 7], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --12-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --13-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.824351' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:08:21.824961' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1131 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:08:21.826378' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment/export" for 127.0.0.1 at 2012-06-29 13:08:21 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:21.831424', "current_sign_in_at" = '2012-06-29 19:08:21.831424', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:21.831927', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"comment"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 54ms (Views: 31.4ms | ActiveRecord: 0.0ms) Started POST "/admin/comment/export?all=true" for 127.0.0.1 at 2012-06-29 13:08:21 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "content", "created_at", "updated_at"], "methods"=>["commentable_id", "commentable_type"]}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "csv"=>"", "all"=>"true", "model_name"=>"comment"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc LIMIT 1 CACHE (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Sent data (0.4ms) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:08:21 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:21.914308', "current_sign_in_at" = '2012-06-29 19:08:21.914308', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:21.914677', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"cms~basic_page"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 44ms (Views: 26.4ms | ActiveRecord: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages" Started POST "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:08:21 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "cms_basic_page"=>{"title"=>"Hello", "content"=>"World"}, "return_to"=>"", "_save"=>"", "model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "cms_basic_pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "World"], ["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["title", "Hello"], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["item", 1], ["message", "Created Hello"], ["table", "Basic page"], ["updated_at", Fri, 29 Jun 2012 19:08:21 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/cms~basic_page Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/cms~basic_page" for 127.0.0.1 at 2012-06-29 13:08:21 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY cms_basic_pages.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:08:22 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:22.013276', "current_sign_in_at" = '2012-06-29 19:08:22.013276', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:22.013645', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"cms~basic_page"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 44ms (Views: 26.6ms | ActiveRecord: 0.0ms) Started POST "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:08:22 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "cms_basic_page"=>{"title"=>"Hello", "content"=>"World"}, "return_to"=>"", "_save"=>"", "model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "cms_basic_pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "World"], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["title", "Hello"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "Created Hello"], ["table", "Basic page"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/cms~basic_page Completed 302 Found in 6ms (ActiveRecord: 0.5ms) Started GET "/admin/cms~basic_page" for 127.0.0.1 at 2012-06-29 13:08:22 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY cms_basic_pages.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 29ms (Views: 25.2ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1136 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1136"], ["notes", nil], ["number", 1136], ["position", "Position 1137"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player'  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' LIMIT 15 OFFSET 0) subquery_for_count   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1137 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1137"], ["notes", nil], ["number", 1137], ["position", "Position 1138"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player'  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' LIMIT 20 OFFSET 0) subquery_for_count  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1138 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1138"], ["notes", nil], ["number", 1138], ["position", "Position 1139"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:08:22 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:22.386235', "current_sign_in_at" = '2012-06-29 19:08:22.386235', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:22.386649', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 57ms (Views: 37.7ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1139 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1139"], ["notes", nil], ["number", 1139], ["position", "Position 1140"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:08:22 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:22.491267', "current_sign_in_at" = '2012-06-29 19:08:22.491267', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:22.491684', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 50ms (Views: 31.2ms | ActiveRecord: 0.2ms)  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = -1 AND "players"."team_id" = -1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", -1], ["position", nil], ["retired", false], ["suspended", false], ["team_id", -1], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 30"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 31"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 32"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 33"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 34"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 35"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 36"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 37"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 38"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 39"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 40"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 41"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 42"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 43"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 44"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 45"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 46"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 47"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 48"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 49"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 50"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 51"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 52"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 53"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 54"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 55"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 56"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 57"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 58"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 59"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 60"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 61"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 62"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 63"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 64"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 65"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 66"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 67"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 68"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 69"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 70"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 71"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 72"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 73"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 74"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 75"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 76"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 77"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 78"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 79"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 80"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 81"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 82"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 83"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 84"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 85"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 86"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 87"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 88"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 89"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 90"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 91"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 92"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 93"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 94"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 95"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 96"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 97"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 98"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 99"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 100"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history?page=2" for 127.0.0.1 at 2012-06-29 13:08:22 -0600 Processing by RailsAdmin::MainController#history_index as JS Parameters: {"page"=>"2", "model_name"=>"player"} Completed 401 Unauthorized in 0ms  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1140 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1140"], ["notes", nil], ["number", 1140], ["position", "Position 1141"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:08:22 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:22.689636', "current_sign_in_at" = '2012-06-29 19:08:22.689636', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:22.690037', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 52ms (Views: 33.6ms | ActiveRecord: 0.2ms)  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = -1 AND "players"."team_id" = -1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", -1], ["position", nil], ["retired", false], ["suspended", false], ["team_id", -1], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 30"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 31"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 32"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 33"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 34"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 35"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 36"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 37"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 38"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 39"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 40"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 41"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 42"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 43"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 44"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 45"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 46"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 47"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 48"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 49"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 50"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 51"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 52"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 53"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 54"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 55"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 56"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 57"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 58"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 59"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 60"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 61"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 62"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 63"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 64"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 65"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 66"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 67"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 68"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 69"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 70"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 71"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 72"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 73"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 74"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 75"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 76"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 77"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 78"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 79"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 80"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 81"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 82"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 83"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 84"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 85"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 86"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 87"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 88"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 89"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 90"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 91"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 92"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 93"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 94"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 95"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 96"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 97"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 98"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 99"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 100"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 1 RailsAdmin::History Load (0.3ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1141 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1141"], ["notes", nil], ["number", 1141], ["position", "Position 1142"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:08:22 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:22.936321', "current_sign_in_at" = '2012-06-29 19:08:22.936321', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:22.936727', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 52ms (Views: 33.6ms | ActiveRecord: 0.2ms)  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = -1 AND "players"."team_id" = -1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", -1], ["position", nil], ["retired", false], ["suspended", false], ["team_id", -1], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["item", 2], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:22 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 30"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 31"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 32"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 33"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 34"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 35"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 36"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 37"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 38"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 39"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 40"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 41"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 42"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 43"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 44"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 45"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 46"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 47"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 48"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 49"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 50"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 51"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 52"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 53"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 54"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 55"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 56"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 57"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 58"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 59"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 60"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 61"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 62"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 63"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 64"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 65"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 66"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 67"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 68"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 69"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 70"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 71"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 72"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 73"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 74"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 75"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 76"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 77"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 78"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 79"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 80"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 81"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 82"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 83"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 84"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 85"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 86"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 87"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 88"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 89"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 90"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 91"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 92"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 93"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 94"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 95"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 96"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 97"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 98"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 99"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "change 100"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "rails_admin_histories" LIMIT 100) subquery_for_count  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1142 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1142"], ["notes", nil], ["number", 1142], ["position", "Position 1143"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1143 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1143"], ["notes", nil], ["number", 1143], ["position", "Position 1144"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1144 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1144"], ["notes", nil], ["number", 1144], ["position", "Position 1145"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1145 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1145"], ["notes", nil], ["number", 1145], ["position", "Position 1146"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:23 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:23.135911', "current_sign_in_at" = '2012-06-29 19:08:23.135911', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:23.136344', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 48ms (Views: 26.3ms | ActiveRecord: 0.4ms) Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=2&bulk_ids%5B%5D=1" for 127.0.0.1 at 2012-06-29 13:08:23 -0600 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "_continue"=>"", "bulk_ids"=>["2", "1"], "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Redirected to http://www.example.com/admin/player Filter chain halted as :check_for_cancel rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.1ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:23 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 46ms (Views: 42.1ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players"   (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1146 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1146"], ["notes", nil], ["number", 1146], ["position", "Position 1147"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1147 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1147"], ["notes", nil], ["number", 1147], ["position", "Position 1148"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1148 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1148"], ["notes", nil], ["number", 1148], ["position", "Position 1149"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:08:23 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:23.258250', "current_sign_in_at" = '2012-06-29 19:08:23.258250', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:23.258639', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN ('1', '2') ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 47ms (Views: 25.7ms | ActiveRecord: 0.4ms) Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=2&bulk_ids%5B%5D=1" for 127.0.0.1 at 2012-06-29 13:08:23 -0600 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "bulk_ids"=>["2", "1"], "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN ('2', '1') ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 2], ["message", "Destroyed Player 1147"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1146"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 9ms (ActiveRecord: 1.0ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:23 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 34ms (Views: 30.3ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players"  (0.0ms) SELECT COUNT(*) FROM "rails_admin_histories"  RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", nil], ["datetime_field", Mon, 02 Jan 2012 06:59:59 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", nil], ["datetime_field", Mon, 02 Jan 2012 07:00:00 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", nil], ["datetime_field", Wed, 04 Jan 2012 06:59:59 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", nil], ["datetime_field", Wed, 04 Jan 2012 07:00:00 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field BETWEEN '2012-01-02 07:00:00.000000' AND '2012-01-04 06:59:59.999999')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field BETWEEN '2012-01-02 07:00:00.000000' AND '2012-01-03 06:59:59.999999')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field >= '2012-01-03 07:00:00.000000')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field <= '2012-01-03 06:59:59.999999')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field BETWEEN '2012-01-02 07:00:00.000000' AND '2012-01-03 06:59:59.999999')))  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", Sun, 01 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", Mon, 02 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", Tue, 03 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date_field", Wed, 04 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field BETWEEN '2012-01-02' AND '2012-01-03')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field BETWEEN '2012-01-02' AND '2012-01-02')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field >= '2012-01-03')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field <= '2012-01-02')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field BETWEEN '2012-01-02' AND '2012-01-02')))  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["name", "north"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_league_id", 1], ["name", "div 1"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["name", "south"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_league_id", 2], ["name", "div 2"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (1, 2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["name", "Awesome League"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 3, "updated_at" = '2012-06-29 19:08:23.477175' WHERE "divisions"."custom_id" = 1  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 3, "updated_at" = '2012-06-29 19:08:23.478044' WHERE "divisions"."custom_id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = ? LIMIT 1 [["id", 3]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 3  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 101], ["founded", 101], ["logo_url", nil], ["losses", 101], ["manager", "Manager 101"], ["mascot", nil], ["name", "Team 100"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 101.0], ["wins", 101]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1149 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1149"], ["notes", nil], ["number", 1149], ["position", "Position 1150"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 8"], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 8], ["pick", 8], ["player_id", 1], ["round", 8], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 WARNING: Can't mass-assign protected attributes: suspended Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1150 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Stefan Kiszonka"], ["notes", nil], ["number", 1150], ["position", "Fifth baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.1ms) UPDATE "drafts" SET "player_id" = 2, "updated_at" = '2012-06-29 19:08:23.491917' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 2]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 WARNING: Can't mass-assign protected attributes: suspended  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 87 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Stefan Kiszonka"], ["notes", nil], ["number", 87], ["position", "Fifth baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 102], ["founded", 102], ["logo_url", nil], ["losses", 102], ["manager", "Manager 102"], ["mascot", nil], ["name", "Team 101"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 102.0], ["wins", 102]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1150 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1150"], ["notes", nil], ["number", 1150], ["position", "Position 1151"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 9"], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 9], ["pick", 9], ["player_id", 1], ["round", 9], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1151 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Stefan Koza"], ["notes", nil], ["number", 1151], ["position", "Position 1152"], ["retired", false], ["suspended", true], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 103], ["founded", 103], ["logo_url", nil], ["losses", 103], ["manager", "Manager 103"], ["mascot", nil], ["name", "Team 102"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 103.0], ["wins", 103]]  (0.0ms) RELEASE SAVEPOINT active_record_1 WARNING: Can't mass-assign protected attributes: suspended Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" IS NULL LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "drafts" WHERE "drafts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1180 AND "players"."id" != 2 AND "players"."team_id" = 2) LIMIT 1  (0.1ms) UPDATE "players" SET "number" = 1180, "team_id" = 2, "updated_at" = '2012-06-29 19:08:23.518889' WHERE "players"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 2]] Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 2 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1152 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1151"], ["notes", nil], ["number", 1152], ["position", "Position 1153"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["name", "League 10"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1153 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1152"], ["notes", nil], ["number", 1153], ["position", "Position 1154"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1154 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1153"], ["notes", nil], ["number", 1154], ["position", "Position 1155"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1155 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1154"], ["notes", nil], ["number", 1155], ["position", "Position 1156"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1156 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1155"], ["notes", nil], ["number", 1156], ["position", "Position 1157"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1157 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1156"], ["notes", nil], ["number", 1157], ["position", "Position 1158"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1158 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1157"], ["notes", nil], ["number", 1158], ["position", "Position 1159"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1159 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1158"], ["notes", nil], ["number", 1159], ["position", "Position 1160"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1160 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1159"], ["notes", nil], ["number", 1160], ["position", "Position 1161"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1161 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1160"], ["notes", nil], ["number", 1161], ["position", "Position 1162"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 'abc' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1162 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1161"], ["notes", nil], ["number", 1162], ["position", "Position 1163"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1163 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1162"], ["notes", nil], ["number", 1163], ["position", "Position 1164"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1164 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1163"], ["notes", nil], ["number", 1164], ["position", "Position 1165"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players"   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1165 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1164"], ["notes", nil], ["number", 1165], ["position", "Position 1166"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1166 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1165"], ["notes", nil], ["number", 1166], ["position", "Position 1167"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1167 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1166"], ["notes", nil], ["number", 1167], ["position", "Position 1168"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "players"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1168 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1167"], ["notes", nil], ["number", 1168], ["position", "Position 1169"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1169 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1168"], ["notes", nil], ["number", 1169], ["position", "Position 1170"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1170 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1169"], ["notes", nil], ["number", 1170], ["position", "Position 1171"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1171 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1170"], ["notes", nil], ["number", 1171], ["position", "Position 1172"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1172 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1171"], ["notes", nil], ["number", 1172], ["position", "Position 1173"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1173 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1172"], ["notes", nil], ["number", 1173], ["position", "Position 1174"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."name" = 'Player 1170'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1174 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1173"], ["notes", nil], ["number", 1174], ["position", "Position 1175"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1175 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1174"], ["notes", nil], ["number", 1175], ["position", "Position 1176"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.3ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1176 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1175"], ["notes", nil], ["number", 1176], ["position", "Position 1177"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1177 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1176"], ["notes", nil], ["number", 1177], ["position", "Position 1178"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1178 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1177"], ["notes", nil], ["number", 1178], ["position", "Position 1179"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1179 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1178"], ["notes", nil], ["number", 1179], ["position", "Position 1180"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1180 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1179"], ["notes", nil], ["number", 1180], ["position", "Position 1181"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1181 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1180"], ["notes", nil], ["number", 1181], ["position", "Position 1182"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1182 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1181"], ["notes", nil], ["number", 1182], ["position", "Position 1183"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "players" LIMIT 2) subquery_for_count   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1183 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1182"], ["notes", nil], ["number", 1183], ["position", "Position 1184"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1184 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1183"], ["notes", nil], ["number", 1184], ["position", "Position 1185"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1185 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1184"], ["notes", nil], ["number", 1185], ["position", "Position 1186"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE '%Player 1183%') OR (players.position LIKE '%Player 1183%') OR (players.notes LIKE '%Player 1183%'))  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1186 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1185"], ["notes", nil], ["number", 1186], ["position", "Position 1187"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1187 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1186"], ["notes", nil], ["number", 1187], ["position", "Position 1188"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1188 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1187"], ["notes", nil], ["number", 1188], ["position", "Position 1189"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY id desc LIMIT 1 OFFSET 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY id desc LIMIT 2 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1189 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1188"], ["notes", nil], ["number", 1189], ["position", "Position 1190"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1190 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1189"], ["notes", nil], ["number", 1190], ["position", "Position 1191"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1191 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1190"], ["notes", nil], ["number", 1191], ["position", "Position 1192"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.name LIKE 'Player 1189')))  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1192 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1191"], ["notes", nil], ["number", 1192], ["position", "Position 1193"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1193 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1192"], ["notes", nil], ["number", 1193], ["position", "Position 1194"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1194 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1193"], ["notes", nil], ["number", 1194], ["position", "Position 1195"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1195 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1194"], ["notes", nil], ["number", 1195], ["position", "Position 1196"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1196 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1195"], ["notes", nil], ["number", 1196], ["position", "Position 1197"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1197 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1196"], ["notes", nil], ["number", 1197], ["position", "Position 1198"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY id asc  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_league_id", 1], ["name", "bar division"], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 104], ["founded", 104], ["logo_url", nil], ["losses", 104], ["manager", "Manager 104"], ["mascot", nil], ["name", "Team 103"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 104.0], ["wins", 104]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 1], ["founded", 105], ["logo_url", nil], ["losses", 105], ["manager", "Manager 105"], ["mascot", nil], ["name", "Team 104"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 105.0], ["wins", 105]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 1], ["founded", 106], ["logo_url", nil], ["losses", 106], ["manager", "Manager 106"], ["mascot", nil], ["name", "somewhere foos"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 106.0], ["wins", 106]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 105], ["founded", 107], ["logo_url", nil], ["losses", 107], ["manager", "Manager 107"], ["mascot", nil], ["name", "nowhere foos"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 107.0], ["wins", 107]]  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) SELECT "teams"."id" AS t0_r0, "teams"."created_at" AS t0_r1, "teams"."updated_at" AS t0_r2, "teams"."division_id" AS t0_r3, "teams"."name" AS t0_r4, "teams"."logo_url" AS t0_r5, "teams"."manager" AS t0_r6, "teams"."ballpark" AS t0_r7, "teams"."mascot" AS t0_r8, "teams"."founded" AS t0_r9, "teams"."wins" AS t0_r10, "teams"."losses" AS t0_r11, "teams"."win_percentage" AS t0_r12, "teams"."revenue" AS t0_r13, "teams"."color" AS t0_r14, "teams"."custom_field" AS t0_r15, "divisions"."custom_id" AS t1_r0, "divisions"."created_at" AS t1_r1, "divisions"."updated_at" AS t1_r2, "divisions"."custom_league_id" AS t1_r3, "divisions"."name" AS t1_r4 FROM "teams" LEFT OUTER JOIN "divisions" ON "divisions"."custom_id" = "teams"."division_id" WHERE (((teams.name LIKE '%foo%')) AND ((divisions.name LIKE '%bar%')))  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 106], ["founded", 108], ["logo_url", nil], ["losses", 108], ["manager", "Manager 108"], ["mascot", nil], ["name", "Team 105"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 108.0], ["wins", 108]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 107], ["founded", 109], ["logo_url", nil], ["losses", 109], ["manager", "Manager 109"], ["mascot", nil], ["name", "somewhere foos"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 109.0], ["wins", 109]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["custom_field", nil], ["division_id", 108], ["founded", 110], ["logo_url", nil], ["losses", 110], ["manager", "foo junior"], ["mascot", nil], ["name", "Team 106"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["win_percentage", 110.0], ["wins", 110]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.2ms) SELECT "teams".* FROM "teams" WHERE ((teams.name LIKE '%foo%') OR (teams.logo_url LIKE '%foo%') OR (teams.manager LIKE '%foo%') OR (teams.ballpark LIKE '%foo%') OR (teams.mascot LIKE '%foo%') OR (teams.color IN ('foo')) OR (teams.custom_field LIKE '%foo%')) Team Load (0.2ms) SELECT "teams".* FROM "teams" WHERE ((teams.name LIKE '%foo%') OR (teams.logo_url LIKE '%foo%') OR (teams.manager LIKE '%foo%') OR (teams.ballpark LIKE '%foo%') OR (teams.mascot LIKE '%foo%') OR (teams.color IN ('foo')) OR (teams.custom_field LIKE '%foo%'))  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:23 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 109], ["founded", 111], ["logo_url", nil], ["losses", 111], ["manager", "Manager 110"], ["mascot", nil], ["name", "Team 107"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 111.0], ["wins", 111]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1198 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1197"], ["notes", nil], ["number", 1198], ["position", "Position 1199"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 10"], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 10], ["pick", 10], ["player_id", 1], ["round", 10], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.037646', "current_sign_in_at" = '2012-06-29 19:08:24.037646', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.038053', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.5ms) Completed 200 OK in 46ms (Views: 25.9ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.093422', "current_sign_in_at" = '2012-06-29 19:08:24.093422', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.093805', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 404 Not Found in 106ms (Views: 83.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 110], ["founded", 112], ["logo_url", nil], ["losses", 112], ["manager", "Manager 111"], ["mascot", nil], ["name", "Team 108"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 112.0], ["wins", 112]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1199 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1198"], ["notes", nil], ["number", 1199], ["position", "Position 1200"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 11"], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 11], ["pick", 11], ["player_id", 1], ["round", 11], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.215404', "current_sign_in_at" = '2012-06-29 19:08:24.215404', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.215794', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 51ms (Views: 31.3ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1200 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1199"], ["notes", nil], ["number", 1200], ["position", "Position 1201"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.279064', "current_sign_in_at" = '2012-06-29 19:08:24.279064', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.279441', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 55ms (Views: 35.8ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1201 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1200"], ["notes", nil], ["number", 1201], ["position", "Position 1202"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.345340', "current_sign_in_at" = '2012-06-29 19:08:24.345340', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.345720', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"league", "id"=>"1"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "leagues"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 404 Not Found in 55ms (Views: 34.9ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1202 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1201"], ["notes", nil], ["number", 1202], ["position", "Position 1203"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1.json" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.412522', "current_sign_in_at" = '2012-06-29 19:08:24.412522', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.412897', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as JSON Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 0.1ms)  (2.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1203 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1202"], ["notes", nil], ["number", 1203], ["position", "Position 1204"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1.json" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.445030', "current_sign_in_at" = '2012-06-29 19:08:24.445030', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.445421', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as JSON Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (1.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 111], ["founded", 113], ["logo_url", nil], ["losses", 113], ["manager", "Manager 112"], ["mascot", nil], ["name", "Team 109"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 113.0], ["wins", 113]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.476787', "current_sign_in_at" = '2012-06-29 19:08:24.476787', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.477254', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 111 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 60ms (Views: 40.2ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 112], ["founded", 114], ["logo_url", nil], ["losses", 114], ["manager", "Manager 113"], ["mascot", nil], ["name", "Team 110"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 114.0], ["wins", 114]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.550169', "current_sign_in_at" = '2012-06-29 19:08:24.550169', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.550542', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.0ms) Completed 200 OK in 44ms (Views: 24.1ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 113], ["founded", 115], ["logo_url", nil], ["losses", 115], ["manager", "Manager 114"], ["mascot", nil], ["name", "Team 111"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 115.0], ["wins", 115]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.611511', "current_sign_in_at" = '2012-06-29 19:08:24.611511', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.611968', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 113 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 61ms (Views: 42.0ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 114], ["founded", 116], ["logo_url", nil], ["losses", 116], ["manager", "Manager 115"], ["mascot", nil], ["name", "Team 112"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 116.0], ["wins", 116]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.705882', "current_sign_in_at" = '2012-06-29 19:08:24.705882', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.706289', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 114 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 31ms (Views: 27.0ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 115], ["founded", 117], ["logo_url", nil], ["losses", 117], ["manager", "Manager 116"], ["mascot", nil], ["name", "Team 113"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 117.0], ["wins", 117]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.770299', "current_sign_in_at" = '2012-06-29 19:08:24.770299', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.770752', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 115 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.0ms) Completed 200 OK in 38ms (Views: 32.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 116], ["founded", 118], ["logo_url", nil], ["losses", 118], ["manager", "Manager 117"], ["mascot", nil], ["name", "Team 114"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 118.0], ["wins", 118]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.822129', "current_sign_in_at" = '2012-06-29 19:08:24.822129', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.822705', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 116 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 61ms (Views: 41.0ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["custom_field", nil], ["division_id", 117], ["founded", 119], ["logo_url", nil], ["losses", 119], ["manager", "Manager 118"], ["mascot", nil], ["name", "Team 115"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:24 UTC +00:00], ["win_percentage", 119.0], ["wins", 119]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:24 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:24.961430', "current_sign_in_at" = '2012-06-29 19:08:24.961430', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:24.961887', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 117 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 32ms (Views: 27.7ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 118], ["founded", 120], ["logo_url", nil], ["losses", 120], ["manager", "Manager 119"], ["mascot", nil], ["name", "Team 116"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 120.0], ["wins", 120]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.005313', "current_sign_in_at" = '2012-06-29 19:08:25.005313', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.005706', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 118 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 61ms (Views: 40.9ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 119], ["founded", 121], ["logo_url", nil], ["losses", 121], ["manager", "Manager 120"], ["mascot", nil], ["name", "Team 117"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 121.0], ["wins", 121]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.103522', "current_sign_in_at" = '2012-06-29 19:08:25.103522', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.103918', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 119 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 30ms (Views: 26.3ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 120], ["founded", 122], ["logo_url", nil], ["losses", 122], ["manager", "Manager 121"], ["mascot", nil], ["name", "Team 118"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 122.0], ["wins", 122]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.151004', "current_sign_in_at" = '2012-06-29 19:08:25.151004', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.151421', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 120 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 52ms (Views: 33.7ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 121], ["founded", 123], ["logo_url", nil], ["losses", 123], ["manager", "Manager 122"], ["mascot", nil], ["name", "Team 119"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 123.0], ["wins", 123]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.241037', "current_sign_in_at" = '2012-06-29 19:08:25.241037', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.241444', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 121 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 29ms (Views: 24.6ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 122], ["founded", 124], ["logo_url", nil], ["losses", 124], ["manager", "Manager 123"], ["mascot", nil], ["name", "Team 120"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 124.0], ["wins", 124]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.315907', "current_sign_in_at" = '2012-06-29 19:08:25.315907', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.316287', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 122 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 33ms (Views: 29.0ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 123], ["founded", 125], ["logo_url", nil], ["losses", 125], ["manager", "Manager 124"], ["mascot", nil], ["name", "Team 121"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 125.0], ["wins", 125]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.401152', "current_sign_in_at" = '2012-06-29 19:08:25.401152', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.401580', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 123 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.9ms) Completed 200 OK in 33ms (Views: 28.3ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 124], ["founded", 126], ["logo_url", nil], ["losses", 126], ["manager", "Manager 125"], ["mascot", nil], ["name", "Team 122"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 126.0], ["wins", 126]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.519317', "current_sign_in_at" = '2012-06-29 19:08:25.519317', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.519772', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 30ms (Views: 25.2ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 125], ["founded", 127], ["logo_url", nil], ["losses", 127], ["manager", "Manager 126"], ["mascot", nil], ["name", "Team 123"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 127.0], ["wins", 127]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.567005', "current_sign_in_at" = '2012-06-29 19:08:25.567005', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.567424', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 125 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 56ms (Views: 36.3ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/players/123this-id-doesnt-exist" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.639677', "current_sign_in_at" = '2012-06-29 19:08:25.639677', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.640041', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"players", "id"=>"123this-id-doesnt-exist"}  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 404 Not Found in 90ms (Views: 55.6ms | ActiveRecord: 1.9ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1204 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1203"], ["notes", nil], ["number", 1204], ["position", "Position 1205"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.741982', "current_sign_in_at" = '2012-06-29 19:08:25.741982', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.742370', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.1ms) Completed 200 OK in 56ms (Views: 36.6ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1205 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1204"], ["notes", nil], ["number", 1205], ["position", "Position 1206"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.812612', "current_sign_in_at" = '2012-06-29 19:08:25.812612', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.813125', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 61ms (Views: 38.6ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1206 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1205"], ["notes", nil], ["number", 1206], ["position", "Position 1207"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.885959', "current_sign_in_at" = '2012-06-29 19:08:25.885959', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.886645', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 53ms (Views: 34.0ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1207 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1206"], ["notes", nil], ["number", 1207], ["position", "Position 1208"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["custom_field", nil], ["division_id", 126], ["founded", 128], ["logo_url", nil], ["losses", 128], ["manager", "Manager 127"], ["mascot", nil], ["name", "Team 124"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["win_percentage", 128.0], ["wins", 128]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 12"], ["created_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 12], ["pick", 12], ["player_id", 1], ["round", 12], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:25 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:25.954445', "current_sign_in_at" = '2012-06-29 19:08:25.954445', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:25.954814', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 56ms (Views: 37.5ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1208 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1207"], ["notes", nil], ["number", 1208], ["position", "Position 1209"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["custom_field", nil], ["division_id", 127], ["founded", 129], ["logo_url", nil], ["losses", 129], ["manager", "Manager 128"], ["mascot", nil], ["name", "Team 125"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["win_percentage", 129.0], ["wins", 129]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:08:26.022386' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.024516', "current_sign_in_at" = '2012-06-29 19:08:26.024516', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.024878', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 54ms (Views: 35.6ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1209 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1208"], ["notes", nil], ["number", 1209], ["position", "Position 1210"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", " Lorém --14-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", " Lorém --15-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1210 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1209"], ["notes", nil], ["number", 1210], ["position", "Position 1211"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 2], ["commentable_type", "Player"], ["content", " Lorém --16-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.142391', "current_sign_in_at" = '2012-06-29 19:08:26.142391', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.142890', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 61ms (Views: 42.2ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1211 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1210"], ["notes", nil], ["number", 1211], ["position", "Position 1212"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", " Lorém --17-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment/1" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.218808', "current_sign_in_at" = '2012-06-29 19:08:26.218808', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.219224', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"comment", "id"=>"1"} Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 55ms (Views: 33.0ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.289612', "current_sign_in_at" = '2012-06-29 19:08:26.289612', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.290080', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 49ms (Views: 31.0ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"No problem here", "restricted_field"=>"I'm allowed to do that as :custom_role only"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", "I'm allowed to do that as :custom_role only"], ["string_field", "No problem here"], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 8ms (ActiveRecord: 0.9ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:26 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 40ms (Views: 35.5ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.410376', "current_sign_in_at" = '2012-06-29 19:08:26.410376', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.410790', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 47ms (Views: 28.9ms | ActiveRecord: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.472833', "current_sign_in_at" = '2012-06-29 19:08:26.472833', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.473312', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 54ms (Views: 35.1ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/user/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.542752', "current_sign_in_at" = '2012-06-29 19:08:26.542752', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.543254', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"user"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 46ms (Views: 28.8ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.603027', "current_sign_in_at" = '2012-06-29 19:08:26.603027', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.603451', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 45ms (Views: 27.5ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.664036', "current_sign_in_at" = '2012-06-29 19:08:26.664036', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.664525', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 91ms (Views: 72.7ms | ActiveRecord: 0.0ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.771162', "current_sign_in_at" = '2012-06-29 19:08:26.771162', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.771619', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 45ms (Views: 26.6ms | ActiveRecord: 0.0ms)  (1.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.831911', "current_sign_in_at" = '2012-06-29 19:08:26.831911', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.832348', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (5.1ms) Completed 200 OK in 47ms (Views: 28.0ms | ActiveRecord: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.893787', "current_sign_in_at" = '2012-06-29 19:08:26.893787', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.894225', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 45ms (Views: 27.0ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:26 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/draft/new" for 127.0.0.1 at 2012-06-29 13:08:26 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:26.953772', "current_sign_in_at" = '2012-06-29 19:08:26.953772', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:26.954214', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"draft"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 48ms (Views: 28.5ms | ActiveRecord: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.035479', "current_sign_in_at" = '2012-06-29 19:08:27.035479', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.035975', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_colorpicker.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (1.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 49ms (Views: 30.1ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/draft/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.098707', "current_sign_in_at" = '2012-06-29 19:08:27.098707', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.099153', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"draft"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.5ms) Completed 200 OK in 49ms (Views: 30.6ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.169791', "current_sign_in_at" = '2012-06-29 19:08:27.169791', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.170274', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 52ms (Views: 31.7ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"timestamp_field"=>"2012-06-29 19:08:27"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 42ms (Views: 37.0ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.297966', "current_sign_in_at" = '2012-06-29 19:08:27.297966', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.298426', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 96ms (Views: 76.7ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"timestamp_field"=>"Fri, 29 Jun 2012 19:08:27"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 42ms (Views: 36.5ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.466221', "current_sign_in_at" = '2012-06-29 19:08:27.466221', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.466634', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (6.8ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (15.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 128ms (Views: 109.9ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"June 29, 2012 19:08", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", Fri, 29 Jun 2012 19:08:00 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 13ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 39ms (Views: 34.2ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.678001', "current_sign_in_at" = '2012-06-29 19:08:27.678001', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.678500', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 113ms (Views: 93.5ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"2012-06-29 19:08:27", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["date_field", nil], ["datetime_field", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 31ms (Views: 26.9ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.9ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:27.867564', "current_sign_in_at" = '2012-06-29 19:08:27.867564', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:27.868077', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 94ms (Views: 75.4ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"datetime_field"=>"Fri, 29 Jun 2012 19:08:27"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["date_field", nil], ["datetime_field", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:27 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:27 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 39ms (Views: 34.1ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:28.029265', "current_sign_in_at" = '2012-06-29 19:08:28.029265', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:28.029663', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (11.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 109ms (Views: 90.8ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"June 29, 2012 19:08", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["date_field", nil], ["datetime_field", Fri, 29 Jun 2012 19:08:00 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 37ms (Views: 32.8ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.9ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:28.217489', "current_sign_in_at" = '2012-06-29 19:08:28.217489', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:28.218039', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 47ms (Views: 28.7ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"format"=>"test for format"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", "test for format"], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.8ms) Completed 200 OK in 41ms (Views: 35.8ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:28.340702', "current_sign_in_at" = '2012-06-29 19:08:28.340702', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:28.341172', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (1.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.0ms) Completed 200 OK in 51ms (Views: 29.6ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"time_field"=>"07:08 PM"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", Fri, 29 Jun 2012 19:08:00 +0000], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 92ms (Views: 86.9ms | ActiveRecord: 0.3ms) FieldTest Load (0.2ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:28.513537', "current_sign_in_at" = '2012-06-29 19:08:28.513537', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:28.514090', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 113ms (Views: 93.4ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"19:08", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 15:08:28 EDT -04:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", Fri, 29 Jun 2012 19:08:00 +0000], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 15:08:28 EDT -04:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 15:08:28 EDT -04:00], ["updated_at", Fri, 29 Jun 2012 15:08:28 EDT -04:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 15:08:28 EDT -04:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 15:08:28 EDT -04:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 1.0ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 41ms (Views: 36.1ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:28.710345', "current_sign_in_at" = '2012-06-29 19:08:28.710345', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:28.710732', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 112ms (Views: 93.3ms | ActiveRecord: 0.4ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"19:08", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", Fri, 29 Jun 2012 19:08:00 +0000], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 36ms (Views: 32.1ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:28.899509', "current_sign_in_at" = '2012-06-29 19:08:28.899509', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:28.899990', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 47ms (Views: 29.3ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"date_field"=>"2012-06-29"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:28 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:28 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 84ms (Views: 78.8ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.059361', "current_sign_in_at" = '2012-06-29 19:08:29.059361', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.059737', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (11.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 112ms (Views: 92.8ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"June 29, 2012", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Sat, 30 Jun 2012 04:08:29 JST +09:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Sat, 30 Jun 2012 04:08:29 JST +09:00]] SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Sat, 30 Jun 2012 04:08:29 JST +09:00], ["updated_at", Sat, 30 Jun 2012 04:08:29 JST +09:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 30 Jun 2012 04:08:29 JST +09:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Sat, 30 Jun 2012 04:08:29 JST +09:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.9ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 37ms (Views: 32.7ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.247054', "current_sign_in_at" = '2012-06-29 19:08:29.247054', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.247480', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 113ms (Views: 93.8ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"June 29, 2012", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 38ms (Views: 33.3ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.439267', "current_sign_in_at" = '2012-06-29 19:08:29.439267', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.439743', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 93ms (Views: 75.3ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"date_field"=>"2012-06-29"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 38ms (Views: 33.6ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.599886', "current_sign_in_at" = '2012-06-29 19:08:29.599886', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.600294', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.9ms)  (0.1ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 95ms (Views: 75.2ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/category/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.723814', "current_sign_in_at" = '2012-06-29 19:08:29.723814', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.724293', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"category"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 0.0ms) Started POST "/admin/category/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "_save"=>"", "model_name"=>"category"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "categories" ("parent_category_id") VALUES (?) [["parent_category_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["item", 1], ["message", "Created Category #1"], ["table", "Category"], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/category Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/category" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"category"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" ORDER BY categories.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "categories"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 30ms (Views: 26.8ms | ActiveRecord: 0.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" LIMIT 1 Started GET "/admin/category/1/edit" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"category", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "categories"  Category Load (0.0ms) SELECT "categories".* FROM "categories" ORDER BY categories.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 28ms (Views: 24.5ms | ActiveRecord: 0.3ms) Started PUT "/admin/category/1/edit" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "category"=>{"parent_category_id"=>""}, "return_to"=>"http://www.example.com/admin/category", "_save"=>"", "model_name"=>"category", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/category Completed 302 Found in 5ms (ActiveRecord: 0.2ms) Started GET "/admin/category" for 127.0.0.1 at 2012-06-29 13:08:29 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"category"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" ORDER BY categories.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "categories"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.901527', "current_sign_in_at" = '2012-06-29 19:08:29.901527', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.902039', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 39ms (Views: 35.8ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:29 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:29 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:29.950981', "current_sign_in_at" = '2012-06-29 19:08:29.950981', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:29.951383', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.9ms)  (0.1ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.2ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (45.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 142ms (Views: 123.4ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.110628', "current_sign_in_at" = '2012-06-29 19:08:30.110628', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.111079', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.3ms)  (0.1ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.1ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 80ms (Views: 60.8ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.236427', "current_sign_in_at" = '2012-06-29 19:08:30.236427', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.236873', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.5ms)  (0.1ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms)  (0.1ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 56ms (Views: 51.8ms | ActiveRecord: 0.5ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.324721', "current_sign_in_at" = '2012-06-29 19:08:30.324721', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.325184', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 37ms (Views: 33.5ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.407449', "current_sign_in_at" = '2012-06-29 19:08:30.407449', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.407910', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.5ms)  (0.1ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 68ms (Views: 64.0ms | ActiveRecord: 0.5ms)  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.510453', "current_sign_in_at" = '2012-06-29 19:08:30.510453', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.510965', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 39ms (Views: 34.9ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.627548', "current_sign_in_at" = '2012-06-29 19:08:30.627548', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.628056', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 38ms (Views: 35.3ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.698436', "current_sign_in_at" = '2012-06-29 19:08:30.698436', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.698916', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 39ms (Views: 35.6ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.752123', "current_sign_in_at" = '2012-06-29 19:08:30.752123', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.752550', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 48ms (Views: 29.3ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.831737', "current_sign_in_at" = '2012-06-29 19:08:30.831737', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.832238', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms)  (0.1ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 36ms (Views: 32.8ms | ActiveRecord: 0.1ms) Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (1.2ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (7.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (3.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 57ms (Views: 52.9ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:30 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:30 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:30.961430', "current_sign_in_at" = '2012-06-29 19:08:30.961430', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:30.962032', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 38ms (Views: 34.6ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.015241', "current_sign_in_at" = '2012-06-29 19:08:31.015241', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.015729', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.9ms)  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.2ms)  (0.1ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 95ms (Views: 76.1ms | ActiveRecord: 0.5ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.143659', "current_sign_in_at" = '2012-06-29 19:08:31.143659', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.144150', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 76ms (Views: 72.2ms | ActiveRecord: 0.0ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.232679', "current_sign_in_at" = '2012-06-29 19:08:31.232679', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.233119', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 44ms (Views: 25.3ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.288841', "current_sign_in_at" = '2012-06-29 19:08:31.288841', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.289281', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.4ms)  (0.1ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 98ms (Views: 78.7ms | ActiveRecord: 0.4ms)  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.418704', "current_sign_in_at" = '2012-06-29 19:08:31.418704', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.419194', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 42ms (Views: 38.2ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.476700', "current_sign_in_at" = '2012-06-29 19:08:31.476700', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.477178', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 55ms (Views: 36.4ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.545178', "current_sign_in_at" = '2012-06-29 19:08:31.545178', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.545631', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 27ms (Views: 18.7ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.584107', "current_sign_in_at" = '2012-06-29 19:08:31.584107', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.584578', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 27ms (Views: 21.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.621439', "current_sign_in_at" = '2012-06-29 19:08:31.621439', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.621816', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 26ms (Views: 20.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.660117', "current_sign_in_at" = '2012-06-29 19:08:31.660117', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.660590', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 25ms (Views: 20.3ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.695987', "current_sign_in_at" = '2012-06-29 19:08:31.695987', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.696395', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 24ms (Views: 19.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.730929', "current_sign_in_at" = '2012-06-29 19:08:31.730929', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.731333', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 28ms (Views: 22.6ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.769748', "current_sign_in_at" = '2012-06-29 19:08:31.769748', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.770201', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 69ms (Views: 19.0ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.850462', "current_sign_in_at" = '2012-06-29 19:08:31.850462', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.850895', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.0ms) Completed 200 OK in 26ms (Views: 21.0ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.4ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.887282', "current_sign_in_at" = '2012-06-29 19:08:31.887282', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.887694', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 25ms (Views: 19.7ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.922700', "current_sign_in_at" = '2012-06-29 19:08:31.922700', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.923201', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 25ms (Views: 20.3ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:31 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:31 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:31.958581', "current_sign_in_at" = '2012-06-29 19:08:31.958581', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:31.958965', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.4ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (13.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 119ms (Views: 98.7ms | ActiveRecord: 0.4ms) Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:32 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 64ms (Views: 59.9ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["field_test_id", nil], ["title", "title 1"], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:08:32.163532' WHERE "nested_field_tests"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:08:32 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:32.165754', "current_sign_in_at" = '2012-06-29 19:08:32.165754', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:32.166137', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"field_test", "id"=>"1"} FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (5.8ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" CACHE (0.0ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (13.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 109ms (Views: 89.5ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:32 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:32.286547', "current_sign_in_at" = '2012-06-29 19:08:32.286547', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:32.286986', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (47.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.5ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (8.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 162ms (Views: 143.6ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:32 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>"nested comment content"}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", "nested comment content"], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:32 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 39ms (Views: 34.2ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["field_test_id", nil], ["title", "title 1"], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["field_test_id", nil], ["title", "title 2"], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:08:32.519861' WHERE "nested_field_tests"."id" = 1  (0.0ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:08:32.520411' WHERE "nested_field_tests"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:08:32 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"field_test", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'NestedFieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (8.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'NestedFieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CACHE (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."id" = 2 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (8.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (26.5ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  CACHE (0.0ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 CACHE (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 102ms (Views: 96.5ms | ActiveRecord: 0.9ms) Started PUT "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:08:32 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "nested_field_tests_attributes"=>{"0"=>{"_destroy"=>"false", "title"=>"nested field test title 1 edited", "comment_attributes"=>{"commentable_type"=>"NestedFieldTest", "commentable_id"=>"1", "content"=>""}, "id"=>"1"}, "1"=>{"_destroy"=>"true", "title"=>"title 2", "comment_attributes"=>{"commentable_type"=>"NestedFieldTest", "commentable_id"=>"2", "content"=>""}, "id"=>"2"}}, "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"1", "content"=>"\nnested comment content", "id"=>"1"}}, "return_to"=>"http://www.example.com/admin/field_test", "_save"=>"", "model_name"=>"field_test", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "title" = 'nested field test title 1 edited', "updated_at" = '2012-06-29 19:08:32.647473' WHERE "nested_field_tests"."id" = 1 SQL (0.1ms) DELETE FROM "nested_field_tests" WHERE "nested_field_tests"."id" = ? [["id", 2]]  (0.1ms) UPDATE "comments" SET "content" = ' nested comment content', "updated_at" = '2012-06-29 19:08:32.648974' WHERE "comments"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["item", 1], ["message", "Removed Nested_field_tests #2 associations"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 15ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:08:32 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 39ms (Views: 34.4ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = ? LIMIT 1 [["id", 1]] NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["field_test_id", nil], ["title", "nested title 1"], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:08:32.706314' WHERE "nested_field_tests"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:08:32 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:32.708855', "current_sign_in_at" = '2012-06-29 19:08:32.708855', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:32.709241', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"field_test", "id"=>"1"} FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'NestedFieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (13.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (21.2ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  CACHE (0.0ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CACHE (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (54.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 176ms (Views: 155.1ms | ActiveRecord: 0.8ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:32 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:08:32 -0600  (0.0ms) SAVEPOINT active_record_1  (0.4ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:32.899183', "current_sign_in_at" = '2012-06-29 19:08:32.899183', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:32.899647', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (0.5ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (13.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 103ms (Views: 84.1ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1212 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1211"], ["notes", nil], ["number", 1212], ["position", "Position 1213"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.018713', "current_sign_in_at" = '2012-06-29 19:08:33.018713', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.019105', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (1.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 97ms (Views: 74.0ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "position" = 'Second baseman', "number" = 42, "notes" = '', "updated_at" = '2012-06-29 19:08:33.134405' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["item", 1], ["message", "Changed name, position, number, notes"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 11ms (ActiveRecord: 1.0ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.9ms) Completed 200 OK in 43ms (Views: 37.3ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1213 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1212"], ["notes", nil], ["number", 1213], ["position", "Position 1214"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.195712', "current_sign_in_at" = '2012-06-29 19:08:33.195712', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.196103', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.1ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 93ms (Views: 70.9ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"", "position"=>"Position 1214", "number"=>"1213", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1213 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.4ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (1.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 406 Not Acceptable in 110ms (Views: 101.1ms | ActiveRecord: 1.0ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1214 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1213"], ["notes", nil], ["number", 1214], ["position", "Position 1215"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.419490', "current_sign_in_at" = '2012-06-29 19:08:33.419490', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.419885', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.5ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 93ms (Views: 73.2ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"a", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 0 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.3ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 406 Not Acceptable in 57ms (Views: 47.7ms | ActiveRecord: 0.8ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_33@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_33@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/user/2/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.593699', "current_sign_in_at" = '2012-06-29 19:08:33.593699', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.594103', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"user", "id"=>"2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 65ms (Views: 46.1ms | ActiveRecord: 0.1ms) Started PUT "/admin/user/2/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "user"=>{"email"=>"username_33@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "roles"=>"['admin', 'user']"}, "return_to"=>"", "_save"=>"", "model_name"=>"user", "id"=>"2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - admin - user ', "updated_at" = '2012-06-29 19:08:33.675633' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["item", 2], ["message", "Changed roles"], ["table", "User"], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/user Completed 302 Found in 15ms (ActiveRecord: 0.6ms) Started GET "/admin/user" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"user"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY users.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "users"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 44ms (Views: 39.6ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "green"], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.741562', "current_sign_in_at" = '2012-06-29 19:08:33.741562', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.741976', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 52ms (Views: 32.8ms | ActiveRecord: 0.1ms) Started PUT "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "ball"=>{"color"=>"gray"}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "balls" SET "color" = 'gray', "updated_at" = '2012-06-29 19:08:33.805709' WHERE "balls"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["item", 1], ["message", "Changed color"], ["table", "Ball"], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/ball/1/edit?return_to= Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/ball/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:08:33 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 28ms (Views: 24.1ms | ActiveRecord: 0.1ms) Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = ? LIMIT 1 [["id", 1]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1215 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1214"], ["notes", nil], ["number", 1215], ["position", "Position 1216"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["custom_field", nil], ["division_id", 128], ["founded", 130], ["logo_url", nil], ["losses", 130], ["manager", "Manager 129"], ["mascot", nil], ["name", "Team 126"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["win_percentage", 130.0], ["wins", 130]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1216 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1215"], ["notes", nil], ["number", 1216], ["position", "Position 1217"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 13"], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 13], ["pick", 13], ["player_id", 2], ["round", 13], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/player/1/edit?player%5Bdraft_id%5D=1&player%5Bname%5D=Jackie+Robinson&player%5Bnumber%5D=1217&player%5Bposition%5D=Second+baseman" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.854449', "current_sign_in_at" = '2012-06-29 19:08:33.854449', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.854820', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"player"=>{"draft_id"=>"1", "name"=>"Jackie Robinson", "number"=>"1217", "position"=>"Second baseman"}, "model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "drafts" SET "player_id" = 1, "updated_at" = '2012-06-29 19:08:33.880990' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1217 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "number" = 1217, "position" = 'Second baseman', "updated_at" = '2012-06-29 19:08:33.882636' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["item", 1], ["message", "Changed name, position, number"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 29ms (ActiveRecord: 0.8ms) Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1217 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1216"], ["notes", nil], ["number", 1217], ["position", "Position 1218"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["custom_field", nil], ["division_id", 129], ["founded", 131], ["logo_url", nil], ["losses", 131], ["manager", "Manager 130"], ["mascot", nil], ["name", "Team 127"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["win_percentage", 131.0], ["wins", 131]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1218 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1217"], ["notes", nil], ["number", 1218], ["position", "Position 1219"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 14"], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["date", Fri, 22 Jun 2012 19:08:00 UTC +00:00], ["notes", nil], ["overall", 14], ["pick", 14], ["player_id", 2], ["round", 14], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/player/1/edit?player%5Bdraft_id%5D=1&player%5Bname%5D=Jackie+Robinson&player%5Bnumber%5D=1219&player%5Bposition%5D=Second+baseman" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.900077', "current_sign_in_at" = '2012-06-29 19:08:33.900077', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.900509', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"player"=>{"draft_id"=>"1", "name"=>"Jackie Robinson", "number"=>"1219", "position"=>"Second baseman"}, "model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "drafts" SET "player_id" = 1, "updated_at" = '2012-06-29 19:08:33.976010' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1219 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "number" = 1219, "position" = 'Second baseman', "updated_at" = '2012-06-29 19:08:33.977871' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["item", 1], ["message", "Changed name, position, number"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 79ms (ActiveRecord: 0.8ms) Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:33 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:33.990049', "current_sign_in_at" = '2012-06-29 19:08:33.990049', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:33.990552', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"params"=>{"player"=>{"name"=>"Jackie Robinson", "number"=>"42", "position"=>"Second baseman"}}, "model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 404 Not Found in 64ms (Views: 41.6ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["name", "League 11"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["name", "league 1340996914.064237"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["custom_league_id", 2], ["name", "div 1340996914.064228"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["name", "league 1340996914.066198"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["custom_league_id", 3], ["name", "div 1340996914.0661912"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["name", "league 1340996914.067829"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["custom_league_id", 4], ["name", "div 1340996914.0678232"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/league/1/edit?league%5Bdivision_ids%5D%5B%5D=1&league%5Bname%5D=National+League" for 127.0.0.1 at 2012-06-29 13:08:34 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:34.070838', "current_sign_in_at" = '2012-06-29 19:08:34.070838', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:34.071246', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"league"=>{"division_ids"=>["1"], "name"=>"National League"}, "model_name"=>"league", "id"=>"1"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 1, "updated_at" = '2012-06-29 19:08:34.095768' WHERE "divisions"."custom_id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "leagues" SET "name" = 'National League', "updated_at" = '2012-06-29 19:08:34.096934' WHERE "leagues"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["item", 1], ["message", "Added Divisions #1 associations, Changed name"], ["table", "League"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/league Completed 302 Found in 27ms (ActiveRecord: 0.7ms) League Load (0.0ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = ? LIMIT 1 [["id", 1]] Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."item" = 1 ORDER BY id DESC Started PUT "/admin/league/1/edit?league%5Bdivision_ids%5D%5B%5D=" for 127.0.0.1 at 2012-06-29 13:08:34 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"league"=>{"division_ids"=>[""]}, "model_name"=>"league", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "divisions" SET "custom_league_id" = NULL WHERE "divisions"."custom_league_id" = 1 AND "divisions"."custom_id" IN (1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["item", 1], ["message", "Removed Divisions #1 associations"], ["table", "League"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/league Completed 302 Found in 9ms (ActiveRecord: 0.8ms) League Load (0.0ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = ? LIMIT 1 [["id", 1]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."item" = 1 ORDER BY id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1219 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1218"], ["notes", nil], ["number", 1219], ["position", "Position 1220"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:34 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:34.124796', "current_sign_in_at" = '2012-06-29 19:08:34.124796', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:34.125212', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (7.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.3ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.1ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 94ms (Views: 73.1ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:08:34 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "position" = 'Second baseman', "number" = 42, "notes" = '', "updated_at" = '2012-06-29 19:08:34.239053' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["item", 1], ["message", "Changed name, position, number, notes"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/1/edit?return_to= Completed 302 Found in 12ms (ActiveRecord: 0.9ms) Started GET "/admin/player/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:08:34 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = '1' LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.1ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.8ms) Completed 200 OK in 54ms (Views: 49.1ms | ActiveRecord: 0.5ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["type", "Hardball"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:34 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:08:34.314190', "current_sign_in_at" = '2012-06-29 19:08:34.314190', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:08:34.314600', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 54ms (Views: 35.3ms | ActiveRecord: 0.1ms) Started PUT "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:08:34 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "ball"=>{"color"=>"cyan"}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "balls" SET "color" = 'cyan', "updated_at" = '2012-06-29 19:08:34.380422' WHERE "balls"."type" IN ('Hardball') AND "balls"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["item", 1], ["message", "Changed color"], ["table", "Ball"], ["updated_at", Fri, 29 Jun 2012 19:08:34 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/ball/1/edit?return_to= Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/ball/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:08:34 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 29ms (Views: 25.0ms | ActiveRecord: 0.1ms) Hardball Load (0.2ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') AND "balls"."id" = ? LIMIT 1 [["id", 1]]  (1.8ms) rollback transaction Connecting to database specified by database.yml  (2.5ms) DROP TABLE "schema_migrations"  (0.9ms) DROP TABLE "drafts"  (0.8ms) DROP TABLE "leagues"  (0.7ms) DROP TABLE "players"  (0.8ms) DROP TABLE "users"  (0.7ms) DROP TABLE "fans"  (0.7ms) DROP TABLE "fans_teams"  (0.8ms) DROP TABLE "comments"  (1.1ms) DROP TABLE "field_tests"  (0.7ms) DROP TABLE "cms_basic_pages"  (0.6ms) DROP TABLE "teams"  (0.6ms) DROP TABLE "balls"  (0.6ms) DROP TABLE "divisions"  (0.7ms) DROP TABLE "rails_admin_histories"  (0.8ms) DROP TABLE "unscoped_pages"  (0.7ms) DROP TABLE "nested_field_tests"  (0.6ms) DROP TABLE "foo_bars"  (0.6ms) DROP TABLE "categories"  (0.0ms) select sqlite_version(*)  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateDivisionsMigration (1)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "divisions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "name" varchar(50) NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')  (0.9ms) commit transaction Migrating to CreateDraftsMigration (2)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "drafts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "player_id" integer, "team_id" integer, "date" date, "round" integer, "pick" integer, "overall" integer, "college" varchar(100), "notes" text)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('2')  (0.9ms) commit transaction Migrating to CreateLeaguesMigration (3)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "leagues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "name" varchar(50) NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('3')  (0.7ms) commit transaction Migrating to CreatePlayersMigration (4)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "players" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "team_id" integer, "name" varchar(100) NOT NULL, "position" varchar(50), "number" integer NOT NULL, "retired" boolean DEFAULT 'f', "injured" boolean DEFAULT 'f', "born_on" date, "notes" text)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('4')  (2.9ms) commit transaction Migrating to CreateTeamsMigration (5)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "teams" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "division_id" integer, "name" varchar(50), "logo_url" varchar(255), "manager" varchar(100) NOT NULL, "ballpark" varchar(100), "mascot" varchar(100), "founded" integer, "wins" integer, "losses" integer, "win_percentage" float)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('5')  (0.9ms) commit transaction Migrating to DeviseCreateUsers (6)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "password_salt" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('6')  (0.9ms) commit transaction Migrating to CreateHistoriesTable (7)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "message" varchar(255), "username" varchar(255), "item" integer, "table" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("histories")  (0.1ms) CREATE INDEX "index_histories_on_item_and_table" ON "histories" ("item", "table")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('7')  (0.9ms) commit transaction Migrating to CreateFansMigration (8)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "fans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "name" varchar(100) NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('8')  (0.8ms) commit transaction Migrating to CreateFansTeamsMigration (9)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "fans_teams" ("fan_id" integer, "team_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('9')  (0.9ms) commit transaction Migrating to AddRevenueToTeamMigration (10)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "teams" ADD "revenue" decimal(18,2)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('10')  (0.8ms) commit transaction Migrating to AddSuspendedToPlayerMigration (11)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "players" ADD "suspended" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('11')  (1.0ms) commit transaction Migrating to AddAvatarColumnsToUser (12)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "users" ADD "avatar_file_name" varchar(255)  (0.1ms) ALTER TABLE "users" ADD "avatar_content_type" varchar(255)  (0.1ms) ALTER TABLE "users" ADD "avatar_file_size" integer  (0.1ms) ALTER TABLE "users" ADD "avatar_updated_at" datetime  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('12')  (0.7ms) commit transaction Migrating to AddRolesToUser (13)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "users" ADD "roles" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('13')  (0.8ms) commit transaction Migrating to AddColorToTeamMigration (14)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "teams" ADD "color" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('14')  (0.9ms) commit transaction Migrating to CreateRelTests (20101223222233)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "rel_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "league_id" integer, "division_id" integer NOT NULL, "player_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101223222233')  (0.9ms) commit transaction Migrating to CreateComments (20110103205808)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "commentable_id" integer, "commentable_type" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110103205808')  (0.9ms) commit transaction Migrating to RenameHistoriesToRailsAdminHistories (20110123042530)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "histories" RENAME TO "rails_admin_histories"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110123042530')  (0.9ms) commit transaction Migrating to CreateFieldTests (20110224184303)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "field_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "string_field" varchar(255), "text_field" text, "integer_field" integer, "float_field" float, "decimal_field" decimal, "datetime_field" datetime, "timestamp_field" datetime, "time_field" time, "date_field" date, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110224184303')  (0.9ms) commit transaction Migrating to CreateCmsBasicPages (20110328193014)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "cms_basic_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110328193014')  (0.9ms) commit transaction Migrating to RemoveLeagueIdFromTeams (20110329183136)  (0.0ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "altered_teams" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "division_id" integer, "name" varchar(50), "logo_url" varchar(255), "manager" varchar(100) NOT NULL, "ballpark" varchar(100), "mascot" varchar(100), "founded" integer, "wins" integer, "losses" integer, "win_percentage" float, "revenue" decimal(18,2), "color" varchar(255))   (0.0ms) PRAGMA index_list("teams")  (0.1ms) SELECT * FROM "teams"  (0.2ms) DROP TABLE "teams"  (0.1ms) CREATE TABLE "teams" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "division_id" integer, "name" varchar(50), "logo_url" varchar(255), "manager" varchar(100) NOT NULL, "ballpark" varchar(100), "mascot" varchar(100), "founded" integer, "wins" integer, "losses" integer, "win_percentage" float, "revenue" decimal(18,2), "color" varchar(255))   (0.0ms) PRAGMA index_list("altered_teams")  (0.0ms) SELECT * FROM "altered_teams"  (0.2ms) DROP TABLE "altered_teams"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110329183136')  (1.0ms) commit transaction Migrating to AddFormatToFieldTest (20110607152842)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "field_tests" ADD "format" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110607152842')  (0.8ms) commit transaction Migrating to CreateBalls (20110714095433)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "balls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "color" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110714095433')  (0.7ms) commit transaction Migrating to AddProtectedFieldAndRestrictedFieldToFieldTests (20110831090841)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "field_tests" ADD "restricted_field" varchar(255)  (0.1ms) ALTER TABLE "field_tests" ADD "protected_field" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110831090841')  (0.9ms) commit transaction Migrating to ChangeDivisionPrimaryKey (20110901131551)  (0.0ms) begin transaction  (0.2ms) DROP TABLE "divisions"  (0.1ms) CREATE TABLE "divisions" ("custom_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "league_id" integer, "name" varchar(50) NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901131551')  (0.9ms) commit transaction Migrating to RenameLeagueIdForeignKeyOnDivisions (20110901142530)  (0.0ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "altered_divisions" ("custom_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "custom_league_id" integer, "name" varchar(50) NOT NULL)  (0.0ms) PRAGMA index_list("divisions")  (0.1ms) SELECT * FROM "divisions"  (0.2ms) DROP TABLE "divisions"  (0.1ms) CREATE TABLE "divisions" ("custom_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "custom_league_id" integer, "name" varchar(50) NOT NULL)  (0.0ms) PRAGMA index_list("altered_divisions")  (0.0ms) SELECT * FROM "altered_divisions"  (0.1ms) DROP TABLE "altered_divisions"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901142530')  (0.9ms) commit transaction Migrating to SetPrimaryKeyNotNullForDivisions (20110901150912)  (0.0ms) begin transaction  (0.2ms) DROP TABLE "divisions"  (0.1ms) CREATE TABLE "divisions" ("created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "custom_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "custom_league_id" integer, "name" varchar(50) NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901150912')  (0.9ms) commit transaction Migrating to ChangeLengthForRailsAdminHistories (20110901154834)  (0.0ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "altered_rails_admin_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "message" varchar(255), "username" varchar(255), "item" integer, "table" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("rails_admin_histories")  (0.0ms) PRAGMA index_info('index_histories_on_item_and_table')  (0.0ms) PRAGMA index_list("altered_rails_admin_histories")  (0.1ms) CREATE INDEX "temp_index_histories_on_item_and_table" ON "altered_rails_admin_histories" ("item", "table")  (0.1ms) SELECT * FROM "rails_admin_histories"  (0.2ms) DROP TABLE "rails_admin_histories"  (0.1ms) CREATE TABLE "rails_admin_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "message" text(255), "username" varchar(255), "item" integer, "table" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("altered_rails_admin_histories")  (0.0ms) PRAGMA index_info('temp_index_histories_on_item_and_table')  (0.0ms) PRAGMA index_list("rails_admin_histories")  (0.1ms) CREATE INDEX "index_histories_on_item_and_table" ON "rails_admin_histories" ("item", "table")  (0.0ms) SELECT * FROM "altered_rails_admin_histories"  (0.1ms) DROP TABLE "altered_rails_admin_histories"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901154834')  (0.9ms) commit transaction Migrating to CreateUnscopedPages (20111103174459)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "unscoped_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111103174459')  (0.9ms) commit transaction Migrating to AddDragonflyAndCarrierwaveToFieldTests (20111108143642)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "field_tests" ADD "paperclip_asset_file_name" varchar(255)  (0.1ms) ALTER TABLE "field_tests" ADD "dragonfly_asset_uid" varchar(255)  (0.1ms) ALTER TABLE "field_tests" ADD "carrierwave_asset" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108143642')  (0.9ms) commit transaction Migrating to AddTypeToBalls (20111115041025)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "balls" ADD "type" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111115041025')  (0.9ms) commit transaction Migrating to CreateNestedFieldTests (20111123092549)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "nested_field_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "field_test_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111123092549')  (2.9ms) commit transaction Migrating to AddDragonflyAssetNameToFieldTests (20111130075338)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "field_tests" ADD "dragonfly_asset_name" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111130075338')  (0.9ms) commit transaction Migrating to CreateFooBars (20111215083258)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "foo_bars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111215083258')  (0.9ms) commit transaction Migrating to AddCustomFieldToTeams (20120117151733)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "teams" ADD "custom_field" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120117151733')  (1.3ms) commit transaction Migrating to AddCategories (20120118122004)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_category_id" integer)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120118122004')  (1.0ms) commit transaction Migrating to DropRelTests (20120319041705)  (0.0ms) begin transaction  (0.2ms) DROP TABLE "rel_tests"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120319041705')  (0.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:33 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "players"   (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", 1], ["position", "Position 1"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 2 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 2"], ["notes", nil], ["number", 2], ["position", "Position 2"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 3 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 3"], ["notes", nil], ["number", 3], ["position", "Position 3"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 4 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 4"], ["notes", nil], ["number", 4], ["position", "Position 4"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 5 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 5"], ["notes", nil], ["number", 5], ["position", "Position 5"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 6 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 6"], ["notes", nil], ["number", 6], ["position", "Position 6"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 7 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 7"], ["notes", nil], ["number", 7], ["position", "Position 7"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 8 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 8"], ["notes", nil], ["number", 8], ["position", "Position 8"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 9 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 9"], ["notes", nil], ["number", 9], ["position", "Position 9"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 10 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 10"], ["notes", nil], ["number", 10], ["position", "Position 10"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 11 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 11"], ["notes", nil], ["number", 11], ["position", "Position 11"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 12 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 12"], ["notes", nil], ["number", 12], ["position", "Position 12"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 13"], ["notes", nil], ["number", 13], ["position", "Position 13"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 14 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 14"], ["notes", nil], ["number", 14], ["position", "Position 14"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 15 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 15"], ["notes", nil], ["number", 15], ["position", "Position 15"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 16 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 16"], ["notes", nil], ["number", 16], ["position", "Position 16"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 17 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 17"], ["notes", nil], ["number", 17], ["position", "Position 17"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 18 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 18"], ["notes", nil], ["number", 18], ["position", "Position 18"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 19 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 19"], ["notes", nil], ["number", 19], ["position", "Position 19"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 20 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 20"], ["notes", nil], ["number", 20], ["position", "Position 20"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 21 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 21"], ["notes", nil], ["number", 21], ["position", "Position 21"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 22 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 22"], ["notes", nil], ["number", 22], ["position", "Position 22"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 23 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 23"], ["notes", nil], ["number", 23], ["position", "Position 23"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 24 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 24"], ["notes", nil], ["number", 24], ["position", "Position 24"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 25 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 25"], ["notes", nil], ["number", 25], ["position", "Position 25"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 26 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 26"], ["notes", nil], ["number", 26], ["position", "Position 26"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 27 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 27"], ["notes", nil], ["number", 27], ["position", "Position 27"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 28 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 28"], ["notes", nil], ["number", 28], ["position", "Position 28"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 29 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 29"], ["notes", nil], ["number", 29], ["position", "Position 29"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 30 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 30"], ["notes", nil], ["number", 30], ["position", "Position 30"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 31 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 31"], ["notes", nil], ["number", 31], ["position", "Position 31"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 32"], ["notes", nil], ["number", 32], ["position", "Position 32"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 33 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 33"], ["notes", nil], ["number", 33], ["position", "Position 33"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 34 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 34"], ["notes", nil], ["number", 34], ["position", "Position 34"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 35 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 35"], ["notes", nil], ["number", 35], ["position", "Position 35"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 36 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 36"], ["notes", nil], ["number", 36], ["position", "Position 36"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 37 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 37"], ["notes", nil], ["number", 37], ["position", "Position 37"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 38 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 38"], ["notes", nil], ["number", 38], ["position", "Position 38"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 39 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 39"], ["notes", nil], ["number", 39], ["position", "Position 39"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 40 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 40"], ["notes", nil], ["number", 40], ["position", "Position 40"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 41 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 41"], ["notes", nil], ["number", 41], ["position", "Position 41"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 42"], ["notes", nil], ["number", 42], ["position", "Position 42"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 43 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 43"], ["notes", nil], ["number", 43], ["position", "Position 43"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 44 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 44"], ["notes", nil], ["number", 44], ["position", "Position 44"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 45 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 45"], ["notes", nil], ["number", 45], ["position", "Position 45"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 46 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 46"], ["notes", nil], ["number", 46], ["position", "Position 46"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 47 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 47"], ["notes", nil], ["number", 47], ["position", "Position 47"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 48 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 48"], ["notes", nil], ["number", 48], ["position", "Position 48"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 49 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 49"], ["notes", nil], ["number", 49], ["position", "Position 49"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 50 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 50"], ["notes", nil], ["number", 50], ["position", "Position 50"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 51 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 51"], ["notes", nil], ["number", 51], ["position", "Position 51"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 52 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 52"], ["notes", nil], ["number", 52], ["position", "Position 52"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 53 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 53"], ["notes", nil], ["number", 53], ["position", "Position 53"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 54 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 54"], ["notes", nil], ["number", 54], ["position", "Position 54"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 55 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 55"], ["notes", nil], ["number", 55], ["position", "Position 55"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 56 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 56"], ["notes", nil], ["number", 56], ["position", "Position 56"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 57 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 57"], ["notes", nil], ["number", 57], ["position", "Position 57"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 58 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 58"], ["notes", nil], ["number", 58], ["position", "Position 58"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 59 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 59"], ["notes", nil], ["number", 59], ["position", "Position 59"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 60 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 60"], ["notes", nil], ["number", 60], ["position", "Position 60"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 61 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 61"], ["notes", nil], ["number", 61], ["position", "Position 61"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 62 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 62"], ["notes", nil], ["number", 62], ["position", "Position 62"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 63 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 63"], ["notes", nil], ["number", 63], ["position", "Position 63"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 64 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 64"], ["notes", nil], ["number", 64], ["position", "Position 64"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 65 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 65"], ["notes", nil], ["number", 65], ["position", "Position 65"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 66 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 66"], ["notes", nil], ["number", 66], ["position", "Position 66"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 67 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 67"], ["notes", nil], ["number", 67], ["position", "Position 67"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 68 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 68"], ["notes", nil], ["number", 68], ["position", "Position 68"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 69 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 69"], ["notes", nil], ["number", 69], ["position", "Position 69"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 70 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 70"], ["notes", nil], ["number", 70], ["position", "Position 70"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 71 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 71"], ["notes", nil], ["number", 71], ["position", "Position 71"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 72 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 72"], ["notes", nil], ["number", 72], ["position", "Position 72"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 73 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 73"], ["notes", nil], ["number", 73], ["position", "Position 73"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 74 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 74"], ["notes", nil], ["number", 74], ["position", "Position 74"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 75 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 75"], ["notes", nil], ["number", 75], ["position", "Position 75"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 76 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 76"], ["notes", nil], ["number", 76], ["position", "Position 76"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 77 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 77"], ["notes", nil], ["number", 77], ["position", "Position 77"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 78 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 78"], ["notes", nil], ["number", 78], ["position", "Position 78"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 79 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 79"], ["notes", nil], ["number", 79], ["position", "Position 79"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 80 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 80"], ["notes", nil], ["number", 80], ["position", "Position 80"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 81 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 81"], ["notes", nil], ["number", 81], ["position", "Position 81"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 82 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 82"], ["notes", nil], ["number", 82], ["position", "Position 82"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 83 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 83"], ["notes", nil], ["number", 83], ["position", "Position 83"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 84 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 84"], ["notes", nil], ["number", 84], ["position", "Position 84"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 85 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 85"], ["notes", nil], ["number", 85], ["position", "Position 85"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 86 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 86"], ["notes", nil], ["number", 86], ["position", "Position 86"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 87 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 87"], ["notes", nil], ["number", 87], ["position", "Position 87"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 88 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 88"], ["notes", nil], ["number", 88], ["position", "Position 88"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 89 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 89"], ["notes", nil], ["number", 89], ["position", "Position 89"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 90 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 90"], ["notes", nil], ["number", 90], ["position", "Position 90"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 91 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 91"], ["notes", nil], ["number", 91], ["position", "Position 91"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 92 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 92"], ["notes", nil], ["number", 92], ["position", "Position 92"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 93 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 93"], ["notes", nil], ["number", 93], ["position", "Position 93"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 94 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 94"], ["notes", nil], ["number", 94], ["position", "Position 94"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 95 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 95"], ["notes", nil], ["number", 95], ["position", "Position 95"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 96 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 96"], ["notes", nil], ["number", 96], ["position", "Position 96"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 97 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 97"], ["notes", nil], ["number", 97], ["position", "Position 97"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 98 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 98"], ["notes", nil], ["number", 98], ["position", "Position 98"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 99 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 99"], ["notes", nil], ["number", 99], ["position", "Position 99"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 100 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 100"], ["notes", nil], ["number", 100], ["position", "Position 100"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "players"  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["name", "League 1"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["custom_field", nil], ["division_id", 1], ["founded", 1], ["logo_url", nil], ["losses", 1], ["manager", "Manager 1"], ["mascot", nil], ["name", "Team 1"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["win_percentage", 1.0], ["wins", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["name", "League 2"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 101 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 101"], ["notes", nil], ["number", 101], ["position", "Position 101"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player'  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' LIMIT 20 OFFSET 0) subquery_for_count  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 102 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 102"], ["notes", nil], ["number", 102], ["position", "Position 102"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player'  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' LIMIT 15 OFFSET 0) subquery_for_count   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 103 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 103"], ["notes", nil], ["number", 103], ["position", "Position 103"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 104 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 104"], ["notes", nil], ["number", 104], ["position", "Position 104"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:34 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:09:35 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:35.009366', "current_sign_in_at" = '2012-06-29 19:09:35.009366', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:35.010011', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (5.5ms) Completed 200 OK in 117ms (Views: 99.5ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 105 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 105"], ["notes", nil], ["number", 105], ["position", "Position 105"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:09:35 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:35.267778', "current_sign_in_at" = '2012-06-29 19:09:35.267778', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:35.268210', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (39.7ms) Completed 200 OK in 84ms (Views: 65.9ms | ActiveRecord: 0.2ms)  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = -1 AND "players"."team_id" = -1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", -1], ["position", nil], ["retired", false], ["suspended", false], ["team_id", -1], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 30"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 31"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 32"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 33"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 34"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 35"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 36"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 37"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 38"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 39"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 40"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 41"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 42"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 43"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 44"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 45"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 46"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 47"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 48"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 49"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 50"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 51"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 52"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 53"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 54"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 55"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 56"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 57"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 58"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 59"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 60"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 61"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 62"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 63"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 64"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 65"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 66"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 67"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 68"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 69"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 70"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 71"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 72"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 73"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 74"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 75"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 76"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 77"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 78"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 79"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 80"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 81"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 82"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 83"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 84"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 85"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 86"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 87"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 88"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 89"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 90"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 91"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 92"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 93"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 94"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 95"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 96"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 97"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 98"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 99"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 100"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 1 RailsAdmin::History Load (0.3ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 106 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 106"], ["notes", nil], ["number", 106], ["position", "Position 106"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:09:35 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:35.520997', "current_sign_in_at" = '2012-06-29 19:09:35.520997', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:35.521500', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 47ms (Views: 29.8ms | ActiveRecord: 0.2ms)  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = -1 AND "players"."team_id" = -1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", -1], ["position", nil], ["retired", false], ["suspended", false], ["team_id", -1], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 30"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 31"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 32"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 33"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 34"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 35"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 36"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 37"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 38"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 39"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 40"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 41"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 42"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 43"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 44"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 45"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 46"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 47"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 48"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 49"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 50"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 51"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 52"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 53"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 54"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 55"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 56"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 57"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 58"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 59"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 60"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 61"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 62"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 63"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 64"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (39.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 65"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 66"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 67"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 68"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 69"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 70"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 71"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 72"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 73"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 74"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 75"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 76"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 77"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 78"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 79"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 80"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 81"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 82"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 83"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 84"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 85"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 86"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 87"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 88"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 89"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 90"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 91"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 92"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 93"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 94"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 95"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 96"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 97"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 98"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 99"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 100"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "rails_admin_histories" LIMIT 100) subquery_for_count  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "rails_admin_histories"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 107 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 107"], ["notes", nil], ["number", 107], ["position", "Position 107"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 1], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history" for 127.0.0.1 at 2012-06-29 13:09:35 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:35.733288', "current_sign_in_at" = '2012-06-29 19:09:35.733288', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:35.733712', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#history_index as HTML Parameters: {"model_name"=>"player"} RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' ORDER BY id DESC LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "rails_admin_histories" WHERE "rails_admin_histories"."table" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 88ms (Views: 70.3ms | ActiveRecord: 0.2ms)  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = -1 AND "players"."team_id" = -1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1"], ["notes", nil], ["number", -1], ["position", nil], ["retired", false], ["suspended", false], ["team_id", -1], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 0"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 1"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 2"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 3"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 4"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 5"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 6"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 7"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 8"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 9"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 10"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 11"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 12"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 13"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 14"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 15"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 16"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 17"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 18"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 19"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 20"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 21"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 22"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 23"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 24"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 25"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 26"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 27"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 28"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 29"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 30"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 31"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 32"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 33"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 34"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 35"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 36"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 37"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 38"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 39"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 40"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 41"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 42"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 43"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 44"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 45"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 46"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 47"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 48"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 49"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 50"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 51"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 52"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 53"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 54"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 55"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 56"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 57"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 58"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 59"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 60"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 61"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 62"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 63"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 64"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 65"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 66"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 67"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 68"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 69"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 70"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 71"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 72"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 73"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 74"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 75"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 76"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 77"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 78"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 79"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 80"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 81"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 82"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 83"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 84"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 85"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 86"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 87"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 88"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 89"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 90"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 91"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 92"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 93"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 94"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 95"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 96"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 97"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 98"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 99"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["item", 2], ["message", "change 100"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["username", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/history?page=2" for 127.0.0.1 at 2012-06-29 13:09:35 -0600 Processing by RailsAdmin::MainController#history_index as JS Parameters: {"page"=>"2", "model_name"=>"player"} Completed 401 Unauthorized in 0ms  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:35 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:09:35 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:35.923660', "current_sign_in_at" = '2012-06-29 19:09:35.923660', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:35.924021', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"cms~basic_page"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (2.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (2.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 98ms (Views: 34.5ms | ActiveRecord: 0.2ms) Started POST "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:09:36 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "cms_basic_page"=>{"title"=>"Hello", "content"=>"World"}, "return_to"=>"", "_save"=>"", "model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "cms_basic_pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "World"], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["title", "Hello"], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["item", 1], ["message", "Created Hello"], ["table", "Basic page"], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/cms~basic_page Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/cms~basic_page" for 127.0.0.1 at 2012-06-29 13:09:36 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY cms_basic_pages.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 47ms (Views: 42.4ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:09:36 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:36.136924', "current_sign_in_at" = '2012-06-29 19:09:36.136924', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:36.137278', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"cms~basic_page"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 44ms (Views: 26.8ms | ActiveRecord: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages" Started POST "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:09:36 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "cms_basic_page"=>{"title"=>"Hello", "content"=>"World"}, "return_to"=>"", "_save"=>"", "model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "cms_basic_pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "World"], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["title", "Hello"], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["item", 1], ["message", "Created Hello"], ["table", "Basic page"], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/cms~basic_page Completed 302 Found in 6ms (ActiveRecord: 0.5ms) Started GET "/admin/cms~basic_page" for 127.0.0.1 at 2012-06-29 13:09:36 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"cms~basic_page"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY cms_basic_pages.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 68ms (Views: 26.3ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "cms_basic_pages"   (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 108 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 108"], ["notes", nil], ["number", 108], ["position", "Position 108"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 109 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 109"], ["notes", nil], ["number", 109], ["position", "Position 109"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 110 AND "players"."team_id" IS NULL) LIMIT 1 SQL (41.0ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 110"], ["notes", nil], ["number", 110], ["position", "Position 110"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 111 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 111"], ["notes", nil], ["number", 111], ["position", "Position 111"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 112 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 112"], ["notes", nil], ["number", 112], ["position", "Position 112"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 113 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 113"], ["notes", nil], ["number", 113], ["position", "Position 113"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 114 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 114"], ["notes", nil], ["number", 114], ["position", "Position 114"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 115 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 115"], ["notes", nil], ["number", 115], ["position", "Position 115"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 116 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 116"], ["notes", nil], ["number", 116], ["position", "Position 116"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 117 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 117"], ["notes", nil], ["number", 117], ["position", "Position 117"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 118 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 118"], ["notes", nil], ["number", 118], ["position", "Position 118"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 119 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 119"], ["notes", nil], ["number", 119], ["position", "Position 119"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 120 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 120"], ["notes", nil], ["number", 120], ["position", "Position 120"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 121 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 121"], ["notes", nil], ["number", 121], ["position", "Position 121"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 122 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 122"], ["notes", nil], ["number", 122], ["position", "Position 122"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 123 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 123"], ["notes", nil], ["number", 123], ["position", "Position 123"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 124 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 124"], ["notes", nil], ["number", 124], ["position", "Position 124"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 125 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 125"], ["notes", nil], ["number", 125], ["position", "Position 125"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 126 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 126"], ["notes", nil], ["number", 126], ["position", "Position 126"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 127 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 127"], ["notes", nil], ["number", 127], ["position", "Position 127"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 128 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 128"], ["notes", nil], ["number", 128], ["position", "Position 128"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:36 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:36.461266', "current_sign_in_at" = '2012-06-29 19:09:36.461266', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:36.461653', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 229ms (Views: 208.8ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 129 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 129"], ["notes", nil], ["number", 129], ["position", "Position 129"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 130 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 130"], ["notes", nil], ["number", 130], ["position", "Position 130"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?all=true" for 127.0.0.1 at 2012-06-29 13:09:37 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:37.035814', "current_sign_in_at" = '2012-06-29 19:09:37.035814', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:37.036247', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"all"=>"true", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 60ms (Views: 40.3ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/whatever" for 127.0.0.1 at 2012-06-29 13:09:37 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:37.105567', "current_sign_in_at" = '2012-06-29 19:09:37.105567', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:37.105868', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"whatever"}  (0.0ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 404 Not Found in 89ms (Views: 55.8ms | ActiveRecord: 2.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 131 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 131"], ["notes", nil], ["number", 131], ["position", "Position 131"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 132 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 132"], ["notes", nil], ["number", 132], ["position", "Position 132"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:37 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:37.255765', "current_sign_in_at" = '2012-06-29 19:09:37.255765', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:37.256161', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 62ms (Views: 42.3ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 133 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 133"], ["notes", nil], ["number", 133], ["position", "Position 133"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 134 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 134"], ["notes", nil], ["number", 134], ["position", "Position 134"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 135 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 135"], ["notes", nil], ["number", 135], ["position", "Position 135"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 136 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 136"], ["notes", nil], ["number", 136], ["position", "Position 136"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 137 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 137"], ["notes", nil], ["number", 137], ["position", "Position 137"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 138 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 138"], ["notes", nil], ["number", 138], ["position", "Position 138"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 139 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 139"], ["notes", nil], ["number", 139], ["position", "Position 139"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 140 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 140"], ["notes", nil], ["number", 140], ["position", "Position 140"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 141 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 141"], ["notes", nil], ["number", 141], ["position", "Position 141"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 142 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 142"], ["notes", nil], ["number", 142], ["position", "Position 142"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 143 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 143"], ["notes", nil], ["number", 143], ["position", "Position 143"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 144 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 144"], ["notes", nil], ["number", 144], ["position", "Position 144"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 145 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 145"], ["notes", nil], ["number", 145], ["position", "Position 145"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 146 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 146"], ["notes", nil], ["number", 146], ["position", "Position 146"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 147 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 147"], ["notes", nil], ["number", 147], ["position", "Position 147"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 148 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 148"], ["notes", nil], ["number", 148], ["position", "Position 148"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 149 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 149"], ["notes", nil], ["number", 149], ["position", "Position 149"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 150 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 150"], ["notes", nil], ["number", 150], ["position", "Position 150"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 151 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 151"], ["notes", nil], ["number", 151], ["position", "Position 151"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 152 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 152"], ["notes", nil], ["number", 152], ["position", "Position 152"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 153 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 153"], ["notes", nil], ["number", 153], ["position", "Position 153"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 154 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 154"], ["notes", nil], ["number", 154], ["position", "Position 154"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 155 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 155"], ["notes", nil], ["number", 155], ["position", "Position 155"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 156 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 156"], ["notes", nil], ["number", 156], ["position", "Position 156"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 157 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 157"], ["notes", nil], ["number", 157], ["position", "Position 157"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 158 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 158"], ["notes", nil], ["number", 158], ["position", "Position 158"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 159 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 159"], ["notes", nil], ["number", 159], ["position", "Position 159"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 160 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 160"], ["notes", nil], ["number", 160], ["position", "Position 160"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 161 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 161"], ["notes", nil], ["number", 161], ["position", "Position 161"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 162 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 162"], ["notes", nil], ["number", 162], ["position", "Position 162"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 163 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 163"], ["notes", nil], ["number", 163], ["position", "Position 163"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 164 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 164"], ["notes", nil], ["number", 164], ["position", "Position 164"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 165 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 165"], ["notes", nil], ["number", 165], ["position", "Position 165"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 166 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 166"], ["notes", nil], ["number", 166], ["position", "Position 166"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 167 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 167"], ["notes", nil], ["number", 167], ["position", "Position 167"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 168 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 168"], ["notes", nil], ["number", 168], ["position", "Position 168"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 169 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 169"], ["notes", nil], ["number", 169], ["position", "Position 169"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 170 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 170"], ["notes", nil], ["number", 170], ["position", "Position 170"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 171 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 171"], ["notes", nil], ["number", 171], ["position", "Position 171"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 172 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 172"], ["notes", nil], ["number", 172], ["position", "Position 172"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 173 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 173"], ["notes", nil], ["number", 173], ["position", "Position 173"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 174 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 174"], ["notes", nil], ["number", 174], ["position", "Position 174"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 175 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 175"], ["notes", nil], ["number", 175], ["position", "Position 175"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 176 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 176"], ["notes", nil], ["number", 176], ["position", "Position 176"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 177 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 177"], ["notes", nil], ["number", 177], ["position", "Position 177"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 178 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 178"], ["notes", nil], ["number", 178], ["position", "Position 178"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 179 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 179"], ["notes", nil], ["number", 179], ["position", "Position 179"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 180 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 180"], ["notes", nil], ["number", 180], ["position", "Position 180"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 181 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 181"], ["notes", nil], ["number", 181], ["position", "Position 181"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 182 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 182"], ["notes", nil], ["number", 182], ["position", "Position 182"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 183 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 183"], ["notes", nil], ["number", 183], ["position", "Position 183"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 184 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 184"], ["notes", nil], ["number", 184], ["position", "Position 184"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 185 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 185"], ["notes", nil], ["number", 185], ["position", "Position 185"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 186 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 186"], ["notes", nil], ["number", 186], ["position", "Position 186"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 187 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 187"], ["notes", nil], ["number", 187], ["position", "Position 187"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 188 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 188"], ["notes", nil], ["number", 188], ["position", "Position 188"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 189 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 189"], ["notes", nil], ["number", 189], ["position", "Position 189"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 190 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 190"], ["notes", nil], ["number", 190], ["position", "Position 190"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (50.9ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 191 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 191"], ["notes", nil], ["number", 191], ["position", "Position 191"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 192 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 192"], ["notes", nil], ["number", 192], ["position", "Position 192"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 193 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 193"], ["notes", nil], ["number", 193], ["position", "Position 193"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 194 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 194"], ["notes", nil], ["number", 194], ["position", "Position 194"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 195 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 195"], ["notes", nil], ["number", 195], ["position", "Position 195"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 196 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 196"], ["notes", nil], ["number", 196], ["position", "Position 196"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 197 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 197"], ["notes", nil], ["number", 197], ["position", "Position 197"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 198 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 198"], ["notes", nil], ["number", 198], ["position", "Position 198"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 199 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 199"], ["notes", nil], ["number", 199], ["position", "Position 199"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 200 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 200"], ["notes", nil], ["number", 200], ["position", "Position 200"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 201 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 201"], ["notes", nil], ["number", 201], ["position", "Position 201"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 202 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 202"], ["notes", nil], ["number", 202], ["position", "Position 202"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 203 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 203"], ["notes", nil], ["number", 203], ["position", "Position 203"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 204 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 204"], ["notes", nil], ["number", 204], ["position", "Position 204"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 205 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 205"], ["notes", nil], ["number", 205], ["position", "Position 205"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 206 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 206"], ["notes", nil], ["number", 206], ["position", "Position 206"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 207 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 207"], ["notes", nil], ["number", 207], ["position", "Position 207"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 208 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 208"], ["notes", nil], ["number", 208], ["position", "Position 208"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 209 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 209"], ["notes", nil], ["number", 209], ["position", "Position 209"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 210 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 210"], ["notes", nil], ["number", 210], ["position", "Position 210"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 211 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 211"], ["notes", nil], ["number", 211], ["position", "Position 211"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 212 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 212"], ["notes", nil], ["number", 212], ["position", "Position 212"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 213 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 213"], ["notes", nil], ["number", 213], ["position", "Position 213"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 214 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 214"], ["notes", nil], ["number", 214], ["position", "Position 214"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 215 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 215"], ["notes", nil], ["number", 215], ["position", "Position 215"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 216 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 216"], ["notes", nil], ["number", 216], ["position", "Position 216"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 217 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 217"], ["notes", nil], ["number", 217], ["position", "Position 217"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 218 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 218"], ["notes", nil], ["number", 218], ["position", "Position 218"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 219 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 219"], ["notes", nil], ["number", 219], ["position", "Position 219"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 220 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 220"], ["notes", nil], ["number", 220], ["position", "Position 220"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 221 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 221"], ["notes", nil], ["number", 221], ["position", "Position 221"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 222 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 222"], ["notes", nil], ["number", 222], ["position", "Position 222"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 223 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 223"], ["notes", nil], ["number", 223], ["position", "Position 223"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 224 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 224"], ["notes", nil], ["number", 224], ["position", "Position 224"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 225 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 225"], ["notes", nil], ["number", 225], ["position", "Position 225"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 226 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 226"], ["notes", nil], ["number", 226], ["position", "Position 226"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 227 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 227"], ["notes", nil], ["number", 227], ["position", "Position 227"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 228 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 228"], ["notes", nil], ["number", 228], ["position", "Position 228"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 229 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 229"], ["notes", nil], ["number", 229], ["position", "Position 229"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 230 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 230"], ["notes", nil], ["number", 230], ["position", "Position 230"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 231 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 231"], ["notes", nil], ["number", 231], ["position", "Position 231"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 232 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 232"], ["notes", nil], ["number", 232], ["position", "Position 232"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 233 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 233"], ["notes", nil], ["number", 233], ["position", "Position 233"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 234 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 234"], ["notes", nil], ["number", 234], ["position", "Position 234"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 235 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 235"], ["notes", nil], ["number", 235], ["position", "Position 235"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 236 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 236"], ["notes", nil], ["number", 236], ["position", "Position 236"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 237 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 237"], ["notes", nil], ["number", 237], ["position", "Position 237"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 238 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 238"], ["notes", nil], ["number", 238], ["position", "Position 238"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 239 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 239"], ["notes", nil], ["number", 239], ["position", "Position 239"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 240 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 240"], ["notes", nil], ["number", 240], ["position", "Position 240"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 241 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 241"], ["notes", nil], ["number", 241], ["position", "Position 241"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 242 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 242"], ["notes", nil], ["number", 242], ["position", "Position 242"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 243 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 243"], ["notes", nil], ["number", 243], ["position", "Position 243"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 244 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 244"], ["notes", nil], ["number", 244], ["position", "Position 244"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 245 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 245"], ["notes", nil], ["number", 245], ["position", "Position 245"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 246 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 246"], ["notes", nil], ["number", 246], ["position", "Position 246"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 247 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 247"], ["notes", nil], ["number", 247], ["position", "Position 247"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 248 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 248"], ["notes", nil], ["number", 248], ["position", "Position 248"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 249 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 249"], ["notes", nil], ["number", 249], ["position", "Position 249"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 250 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 250"], ["notes", nil], ["number", 250], ["position", "Position 250"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 251 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 251"], ["notes", nil], ["number", 251], ["position", "Position 251"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 252 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 252"], ["notes", nil], ["number", 252], ["position", "Position 252"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 253 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 253"], ["notes", nil], ["number", 253], ["position", "Position 253"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 254 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 254"], ["notes", nil], ["number", 254], ["position", "Position 254"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 255 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 255"], ["notes", nil], ["number", 255], ["position", "Position 255"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 256 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 256"], ["notes", nil], ["number", 256], ["position", "Position 256"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 257 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 257"], ["notes", nil], ["number", 257], ["position", "Position 257"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 258 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 258"], ["notes", nil], ["number", 258], ["position", "Position 258"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 259 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 259"], ["notes", nil], ["number", 259], ["position", "Position 259"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 260 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 260"], ["notes", nil], ["number", 260], ["position", "Position 260"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 261 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 261"], ["notes", nil], ["number", 261], ["position", "Position 261"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 262 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 262"], ["notes", nil], ["number", 262], ["position", "Position 262"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 263 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 263"], ["notes", nil], ["number", 263], ["position", "Position 263"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 264 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 264"], ["notes", nil], ["number", 264], ["position", "Position 264"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 265 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 265"], ["notes", nil], ["number", 265], ["position", "Position 265"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 266 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 266"], ["notes", nil], ["number", 266], ["position", "Position 266"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 267 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 267"], ["notes", nil], ["number", 267], ["position", "Position 267"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 268 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 268"], ["notes", nil], ["number", 268], ["position", "Position 268"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 269 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 269"], ["notes", nil], ["number", 269], ["position", "Position 269"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 270 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 270"], ["notes", nil], ["number", 270], ["position", "Position 270"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 271 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 271"], ["notes", nil], ["number", 271], ["position", "Position 271"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 272 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 272"], ["notes", nil], ["number", 272], ["position", "Position 272"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 273 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 273"], ["notes", nil], ["number", 273], ["position", "Position 273"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 274 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 274"], ["notes", nil], ["number", 274], ["position", "Position 274"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 275 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 275"], ["notes", nil], ["number", 275], ["position", "Position 275"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 276 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 276"], ["notes", nil], ["number", 276], ["position", "Position 276"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 277 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 277"], ["notes", nil], ["number", 277], ["position", "Position 277"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 278 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 278"], ["notes", nil], ["number", 278], ["position", "Position 278"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 279 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 279"], ["notes", nil], ["number", 279], ["position", "Position 279"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 280 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 280"], ["notes", nil], ["number", 280], ["position", "Position 280"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 281 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 281"], ["notes", nil], ["number", 281], ["position", "Position 281"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 282 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 282"], ["notes", nil], ["number", 282], ["position", "Position 282"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 283 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 283"], ["notes", nil], ["number", 283], ["position", "Position 283"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 284 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 284"], ["notes", nil], ["number", 284], ["position", "Position 284"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 285 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 285"], ["notes", nil], ["number", 285], ["position", "Position 285"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 286 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 286"], ["notes", nil], ["number", 286], ["position", "Position 286"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 287 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 287"], ["notes", nil], ["number", 287], ["position", "Position 287"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 288 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 288"], ["notes", nil], ["number", 288], ["position", "Position 288"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 289 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 289"], ["notes", nil], ["number", 289], ["position", "Position 289"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 290 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 290"], ["notes", nil], ["number", 290], ["position", "Position 290"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 291 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 291"], ["notes", nil], ["number", 291], ["position", "Position 291"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 292 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 292"], ["notes", nil], ["number", 292], ["position", "Position 292"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 293 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 293"], ["notes", nil], ["number", 293], ["position", "Position 293"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 294 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 294"], ["notes", nil], ["number", 294], ["position", "Position 294"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 295 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 295"], ["notes", nil], ["number", 295], ["position", "Position 295"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 296 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 296"], ["notes", nil], ["number", 296], ["position", "Position 296"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 297 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 297"], ["notes", nil], ["number", 297], ["position", "Position 297"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 298 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 298"], ["notes", nil], ["number", 298], ["position", "Position 298"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 299 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 299"], ["notes", nil], ["number", 299], ["position", "Position 299"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 300 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 300"], ["notes", nil], ["number", 300], ["position", "Position 300"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 301 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 301"], ["notes", nil], ["number", 301], ["position", "Position 301"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 302 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 302"], ["notes", nil], ["number", 302], ["position", "Position 302"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 303 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 303"], ["notes", nil], ["number", 303], ["position", "Position 303"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 304 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 304"], ["notes", nil], ["number", 304], ["position", "Position 304"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 305 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 305"], ["notes", nil], ["number", 305], ["position", "Position 305"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 306 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 306"], ["notes", nil], ["number", 306], ["position", "Position 306"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 307 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 307"], ["notes", nil], ["number", 307], ["position", "Position 307"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 308 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 308"], ["notes", nil], ["number", 308], ["position", "Position 308"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 309 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 309"], ["notes", nil], ["number", 309], ["position", "Position 309"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 310 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 310"], ["notes", nil], ["number", 310], ["position", "Position 310"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 311 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 311"], ["notes", nil], ["number", 311], ["position", "Position 311"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 312 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 312"], ["notes", nil], ["number", 312], ["position", "Position 312"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 313 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 313"], ["notes", nil], ["number", 313], ["position", "Position 313"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 314 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 314"], ["notes", nil], ["number", 314], ["position", "Position 314"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 315 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 315"], ["notes", nil], ["number", 315], ["position", "Position 315"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 316 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 316"], ["notes", nil], ["number", 316], ["position", "Position 316"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 317 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 317"], ["notes", nil], ["number", 317], ["position", "Position 317"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 318 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 318"], ["notes", nil], ["number", 318], ["position", "Position 318"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 319 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 319"], ["notes", nil], ["number", 319], ["position", "Position 319"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 320 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 320"], ["notes", nil], ["number", 320], ["position", "Position 320"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 321 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 321"], ["notes", nil], ["number", 321], ["position", "Position 321"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 322 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 322"], ["notes", nil], ["number", 322], ["position", "Position 322"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 323 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 323"], ["notes", nil], ["number", 323], ["position", "Position 323"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 324 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 324"], ["notes", nil], ["number", 324], ["position", "Position 324"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 325 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 325"], ["notes", nil], ["number", 325], ["position", "Position 325"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 326 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 326"], ["notes", nil], ["number", 326], ["position", "Position 326"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 327 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 327"], ["notes", nil], ["number", 327], ["position", "Position 327"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 328 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 328"], ["notes", nil], ["number", 328], ["position", "Position 328"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 329 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 329"], ["notes", nil], ["number", 329], ["position", "Position 329"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 330 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 330"], ["notes", nil], ["number", 330], ["position", "Position 330"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 331 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 331"], ["notes", nil], ["number", 331], ["position", "Position 331"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 332 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 332"], ["notes", nil], ["number", 332], ["position", "Position 332"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 333 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 333"], ["notes", nil], ["number", 333], ["position", "Position 333"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 334 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 334"], ["notes", nil], ["number", 334], ["position", "Position 334"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 335 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 335"], ["notes", nil], ["number", 335], ["position", "Position 335"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 336 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 336"], ["notes", nil], ["number", 336], ["position", "Position 336"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 337 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 337"], ["notes", nil], ["number", 337], ["position", "Position 337"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 338 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 338"], ["notes", nil], ["number", 338], ["position", "Position 338"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 339 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 339"], ["notes", nil], ["number", 339], ["position", "Position 339"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 340 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 340"], ["notes", nil], ["number", 340], ["position", "Position 340"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 341 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 341"], ["notes", nil], ["number", 341], ["position", "Position 341"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 342 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 342"], ["notes", nil], ["number", 342], ["position", "Position 342"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 343 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 343"], ["notes", nil], ["number", 343], ["position", "Position 343"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 344 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 344"], ["notes", nil], ["number", 344], ["position", "Position 344"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 345 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 345"], ["notes", nil], ["number", 345], ["position", "Position 345"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 346 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 346"], ["notes", nil], ["number", 346], ["position", "Position 346"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 347 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 347"], ["notes", nil], ["number", 347], ["position", "Position 347"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 348 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 348"], ["notes", nil], ["number", 348], ["position", "Position 348"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 349 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 349"], ["notes", nil], ["number", 349], ["position", "Position 349"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 350 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 350"], ["notes", nil], ["number", 350], ["position", "Position 350"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 351 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 351"], ["notes", nil], ["number", 351], ["position", "Position 351"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 352 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 352"], ["notes", nil], ["number", 352], ["position", "Position 352"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 353 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 353"], ["notes", nil], ["number", 353], ["position", "Position 353"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 354 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 354"], ["notes", nil], ["number", 354], ["position", "Position 354"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 355 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 355"], ["notes", nil], ["number", 355], ["position", "Position 355"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 356 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 356"], ["notes", nil], ["number", 356], ["position", "Position 356"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 357 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 357"], ["notes", nil], ["number", 357], ["position", "Position 357"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 358 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 358"], ["notes", nil], ["number", 358], ["position", "Position 358"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 359 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 359"], ["notes", nil], ["number", 359], ["position", "Position 359"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 360 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 360"], ["notes", nil], ["number", 360], ["position", "Position 360"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 361 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 361"], ["notes", nil], ["number", 361], ["position", "Position 361"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 362 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 362"], ["notes", nil], ["number", 362], ["position", "Position 362"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 363 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 363"], ["notes", nil], ["number", 363], ["position", "Position 363"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 364 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 364"], ["notes", nil], ["number", 364], ["position", "Position 364"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 365 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 365"], ["notes", nil], ["number", 365], ["position", "Position 365"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 366 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 366"], ["notes", nil], ["number", 366], ["position", "Position 366"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 367 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 367"], ["notes", nil], ["number", 367], ["position", "Position 367"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 368 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 368"], ["notes", nil], ["number", 368], ["position", "Position 368"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 369 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 369"], ["notes", nil], ["number", 369], ["position", "Position 369"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 370 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 370"], ["notes", nil], ["number", 370], ["position", "Position 370"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 371 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 371"], ["notes", nil], ["number", 371], ["position", "Position 371"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 372 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 372"], ["notes", nil], ["number", 372], ["position", "Position 372"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 373 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 373"], ["notes", nil], ["number", 373], ["position", "Position 373"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.2ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 374 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 374"], ["notes", nil], ["number", 374], ["position", "Position 374"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 375 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 375"], ["notes", nil], ["number", 375], ["position", "Position 375"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 376 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 376"], ["notes", nil], ["number", 376], ["position", "Position 376"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 377 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 377"], ["notes", nil], ["number", 377], ["position", "Position 377"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 378 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 378"], ["notes", nil], ["number", 378], ["position", "Position 378"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 379 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 379"], ["notes", nil], ["number", 379], ["position", "Position 379"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 380 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 380"], ["notes", nil], ["number", 380], ["position", "Position 380"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 381 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 381"], ["notes", nil], ["number", 381], ["position", "Position 381"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 382 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 382"], ["notes", nil], ["number", 382], ["position", "Position 382"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 383 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 383"], ["notes", nil], ["number", 383], ["position", "Position 383"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 384 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 384"], ["notes", nil], ["number", 384], ["position", "Position 384"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 385 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 385"], ["notes", nil], ["number", 385], ["position", "Position 385"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 386 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 386"], ["notes", nil], ["number", 386], ["position", "Position 386"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 387 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 387"], ["notes", nil], ["number", 387], ["position", "Position 387"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 388 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 388"], ["notes", nil], ["number", 388], ["position", "Position 388"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 389 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 389"], ["notes", nil], ["number", 389], ["position", "Position 389"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 390 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 390"], ["notes", nil], ["number", 390], ["position", "Position 390"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 391 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 391"], ["notes", nil], ["number", 391], ["position", "Position 391"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 392 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 392"], ["notes", nil], ["number", 392], ["position", "Position 392"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 393 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 393"], ["notes", nil], ["number", 393], ["position", "Position 393"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 394 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 394"], ["notes", nil], ["number", 394], ["position", "Position 394"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 395 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 395"], ["notes", nil], ["number", 395], ["position", "Position 395"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 396 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 396"], ["notes", nil], ["number", 396], ["position", "Position 396"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 397 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 397"], ["notes", nil], ["number", 397], ["position", "Position 397"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 398 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 398"], ["notes", nil], ["number", 398], ["position", "Position 398"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 399 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 399"], ["notes", nil], ["number", 399], ["position", "Position 399"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 400 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 400"], ["notes", nil], ["number", 400], ["position", "Position 400"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 401 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 401"], ["notes", nil], ["number", 401], ["position", "Position 401"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 402 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 402"], ["notes", nil], ["number", 402], ["position", "Position 402"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 403 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 403"], ["notes", nil], ["number", 403], ["position", "Position 403"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 404 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 404"], ["notes", nil], ["number", 404], ["position", "Position 404"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 405 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 405"], ["notes", nil], ["number", 405], ["position", "Position 405"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 406 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 406"], ["notes", nil], ["number", 406], ["position", "Position 406"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 407 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 407"], ["notes", nil], ["number", 407], ["position", "Position 407"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 408 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 408"], ["notes", nil], ["number", 408], ["position", "Position 408"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 409 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 409"], ["notes", nil], ["number", 409], ["position", "Position 409"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 410 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 410"], ["notes", nil], ["number", 410], ["position", "Position 410"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 411 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 411"], ["notes", nil], ["number", 411], ["position", "Position 411"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 412 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 412"], ["notes", nil], ["number", 412], ["position", "Position 412"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 413 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 413"], ["notes", nil], ["number", 413], ["position", "Position 413"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 414 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 414"], ["notes", nil], ["number", 414], ["position", "Position 414"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 415 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 415"], ["notes", nil], ["number", 415], ["position", "Position 415"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 416 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 416"], ["notes", nil], ["number", 416], ["position", "Position 416"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 417 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 417"], ["notes", nil], ["number", 417], ["position", "Position 417"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 418 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 418"], ["notes", nil], ["number", 418], ["position", "Position 418"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 419 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 419"], ["notes", nil], ["number", 419], ["position", "Position 419"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 420 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 420"], ["notes", nil], ["number", 420], ["position", "Position 420"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 421 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 421"], ["notes", nil], ["number", 421], ["position", "Position 421"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 422 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 422"], ["notes", nil], ["number", 422], ["position", "Position 422"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 423 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 423"], ["notes", nil], ["number", 423], ["position", "Position 423"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 424 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 424"], ["notes", nil], ["number", 424], ["position", "Position 424"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 425 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 425"], ["notes", nil], ["number", 425], ["position", "Position 425"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 426 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 426"], ["notes", nil], ["number", 426], ["position", "Position 426"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 427 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 427"], ["notes", nil], ["number", 427], ["position", "Position 427"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 428 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 428"], ["notes", nil], ["number", 428], ["position", "Position 428"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 429 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 429"], ["notes", nil], ["number", 429], ["position", "Position 429"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 430 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 430"], ["notes", nil], ["number", 430], ["position", "Position 430"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 431 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 431"], ["notes", nil], ["number", 431], ["position", "Position 431"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 432 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 432"], ["notes", nil], ["number", 432], ["position", "Position 432"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 433 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 433"], ["notes", nil], ["number", 433], ["position", "Position 433"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 434 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 434"], ["notes", nil], ["number", 434], ["position", "Position 434"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 435 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 435"], ["notes", nil], ["number", 435], ["position", "Position 435"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 436 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 436"], ["notes", nil], ["number", 436], ["position", "Position 436"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 437 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 437"], ["notes", nil], ["number", 437], ["position", "Position 437"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 438 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 438"], ["notes", nil], ["number", 438], ["position", "Position 438"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 439 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 439"], ["notes", nil], ["number", 439], ["position", "Position 439"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 440 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 440"], ["notes", nil], ["number", 440], ["position", "Position 440"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 441 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 441"], ["notes", nil], ["number", 441], ["position", "Position 441"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 442 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 442"], ["notes", nil], ["number", 442], ["position", "Position 442"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 443 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 443"], ["notes", nil], ["number", 443], ["position", "Position 443"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 444 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 444"], ["notes", nil], ["number", 444], ["position", "Position 444"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 445 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 445"], ["notes", nil], ["number", 445], ["position", "Position 445"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 446 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 446"], ["notes", nil], ["number", 446], ["position", "Position 446"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 447 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 447"], ["notes", nil], ["number", 447], ["position", "Position 447"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 448 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 448"], ["notes", nil], ["number", 448], ["position", "Position 448"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 449 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 449"], ["notes", nil], ["number", 449], ["position", "Position 449"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 450 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 450"], ["notes", nil], ["number", 450], ["position", "Position 450"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 451 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 451"], ["notes", nil], ["number", 451], ["position", "Position 451"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 452 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 452"], ["notes", nil], ["number", 452], ["position", "Position 452"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 453 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 453"], ["notes", nil], ["number", 453], ["position", "Position 453"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 454 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 454"], ["notes", nil], ["number", 454], ["position", "Position 454"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 455 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 455"], ["notes", nil], ["number", 455], ["position", "Position 455"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 456 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 456"], ["notes", nil], ["number", 456], ["position", "Position 456"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 457 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 457"], ["notes", nil], ["number", 457], ["position", "Position 457"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 458 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 458"], ["notes", nil], ["number", 458], ["position", "Position 458"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 459 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 459"], ["notes", nil], ["number", 459], ["position", "Position 459"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 460 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 460"], ["notes", nil], ["number", 460], ["position", "Position 460"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 461 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 461"], ["notes", nil], ["number", 461], ["position", "Position 461"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 462 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 462"], ["notes", nil], ["number", 462], ["position", "Position 462"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 463 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 463"], ["notes", nil], ["number", 463], ["position", "Position 463"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 464 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 464"], ["notes", nil], ["number", 464], ["position", "Position 464"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 465 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 465"], ["notes", nil], ["number", 465], ["position", "Position 465"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 466 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 466"], ["notes", nil], ["number", 466], ["position", "Position 466"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 467 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 467"], ["notes", nil], ["number", 467], ["position", "Position 467"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 468 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 468"], ["notes", nil], ["number", 468], ["position", "Position 468"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 469 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 469"], ["notes", nil], ["number", 469], ["position", "Position 469"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 470 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 470"], ["notes", nil], ["number", 470], ["position", "Position 470"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 471 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 471"], ["notes", nil], ["number", 471], ["position", "Position 471"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 472 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 472"], ["notes", nil], ["number", 472], ["position", "Position 472"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 473 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 473"], ["notes", nil], ["number", 473], ["position", "Position 473"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 474 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 474"], ["notes", nil], ["number", 474], ["position", "Position 474"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 475 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 475"], ["notes", nil], ["number", 475], ["position", "Position 475"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 476 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 476"], ["notes", nil], ["number", 476], ["position", "Position 476"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 477 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 477"], ["notes", nil], ["number", 477], ["position", "Position 477"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 478 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 478"], ["notes", nil], ["number", 478], ["position", "Position 478"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 479 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 479"], ["notes", nil], ["number", 479], ["position", "Position 479"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 480 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 480"], ["notes", nil], ["number", 480], ["position", "Position 480"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 481 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 481"], ["notes", nil], ["number", 481], ["position", "Position 481"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 482 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 482"], ["notes", nil], ["number", 482], ["position", "Position 482"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 483 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 483"], ["notes", nil], ["number", 483], ["position", "Position 483"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 484 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 484"], ["notes", nil], ["number", 484], ["position", "Position 484"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 485 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 485"], ["notes", nil], ["number", 485], ["position", "Position 485"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 486 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 486"], ["notes", nil], ["number", 486], ["position", "Position 486"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 487 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 487"], ["notes", nil], ["number", 487], ["position", "Position 487"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 488 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 488"], ["notes", nil], ["number", 488], ["position", "Position 488"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 489 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 489"], ["notes", nil], ["number", 489], ["position", "Position 489"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 490 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 490"], ["notes", nil], ["number", 490], ["position", "Position 490"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 491 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 491"], ["notes", nil], ["number", 491], ["position", "Position 491"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 492 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 492"], ["notes", nil], ["number", 492], ["position", "Position 492"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 493 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 493"], ["notes", nil], ["number", 493], ["position", "Position 493"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 494 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 494"], ["notes", nil], ["number", 494], ["position", "Position 494"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 495 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 495"], ["notes", nil], ["number", 495], ["position", "Position 495"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 496 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 496"], ["notes", nil], ["number", 496], ["position", "Position 496"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 497 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 497"], ["notes", nil], ["number", 497], ["position", "Position 497"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 498 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 498"], ["notes", nil], ["number", 498], ["position", "Position 498"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 499 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 499"], ["notes", nil], ["number", 499], ["position", "Position 499"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 500 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 500"], ["notes", nil], ["number", 500], ["position", "Position 500"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 501 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 501"], ["notes", nil], ["number", 501], ["position", "Position 501"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 502 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 502"], ["notes", nil], ["number", 502], ["position", "Position 502"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 503 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 503"], ["notes", nil], ["number", 503], ["position", "Position 503"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 504 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 504"], ["notes", nil], ["number", 504], ["position", "Position 504"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 505 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 505"], ["notes", nil], ["number", 505], ["position", "Position 505"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 506 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 506"], ["notes", nil], ["number", 506], ["position", "Position 506"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 507 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 507"], ["notes", nil], ["number", 507], ["position", "Position 507"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 508 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 508"], ["notes", nil], ["number", 508], ["position", "Position 508"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 509 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 509"], ["notes", nil], ["number", 509], ["position", "Position 509"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 510 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 510"], ["notes", nil], ["number", 510], ["position", "Position 510"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 511 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 511"], ["notes", nil], ["number", 511], ["position", "Position 511"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 512 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 512"], ["notes", nil], ["number", 512], ["position", "Position 512"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 513 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 513"], ["notes", nil], ["number", 513], ["position", "Position 513"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 514 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 514"], ["notes", nil], ["number", 514], ["position", "Position 514"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 515 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 515"], ["notes", nil], ["number", 515], ["position", "Position 515"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 516 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 516"], ["notes", nil], ["number", 516], ["position", "Position 516"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 517 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 517"], ["notes", nil], ["number", 517], ["position", "Position 517"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 518 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 518"], ["notes", nil], ["number", 518], ["position", "Position 518"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 519 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 519"], ["notes", nil], ["number", 519], ["position", "Position 519"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 520 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 520"], ["notes", nil], ["number", 520], ["position", "Position 520"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 521 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 521"], ["notes", nil], ["number", 521], ["position", "Position 521"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 522 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 522"], ["notes", nil], ["number", 522], ["position", "Position 522"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 523 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 523"], ["notes", nil], ["number", 523], ["position", "Position 523"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 524 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 524"], ["notes", nil], ["number", 524], ["position", "Position 524"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 525 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 525"], ["notes", nil], ["number", 525], ["position", "Position 525"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 526 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 526"], ["notes", nil], ["number", 526], ["position", "Position 526"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 527 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 527"], ["notes", nil], ["number", 527], ["position", "Position 527"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 528 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 528"], ["notes", nil], ["number", 528], ["position", "Position 528"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 529 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 529"], ["notes", nil], ["number", 529], ["position", "Position 529"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 530 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 530"], ["notes", nil], ["number", 530], ["position", "Position 530"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 531 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 531"], ["notes", nil], ["number", 531], ["position", "Position 531"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 532 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 532"], ["notes", nil], ["number", 532], ["position", "Position 532"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?page=20" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.086550', "current_sign_in_at" = '2012-06-29 19:09:38.086550', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.086999', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"page"=>"20", "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 380  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 180ms (Views: 160.3ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/545-typo" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.287641', "current_sign_in_at" = '2012-06-29 19:09:38.287641', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.287956', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"ball", "id"=>"545-typo"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 545 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "balls"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 404 Not Found in 51ms (Views: 28.6ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 533 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 533"], ["notes", nil], ["number", 533], ["position", "Position 533"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 534 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 534"], ["notes", nil], ["number", 534], ["position", "Position 534"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player.json?compact=true" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.352358', "current_sign_in_at" = '2012-06-29 19:09:38.352358', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.352721', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as JSON Parameters: {"compact"=>"true", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0 Completed 200 OK in 76ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 535 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 535"], ["notes", nil], ["number", 535], ["position", "Position 535"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=layer+535" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.445662', "current_sign_in_at" = '2012-06-29 19:09:38.445662', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.446050', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"layer 535", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE 'layer 535%')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE 'layer 535%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 26.9ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 536 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 536"], ["notes", nil], ["number", 536], ["position", "Position 536"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Pl" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.508907', "current_sign_in_at" = '2012-06-29 19:09:38.508907', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.509327', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Pl", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE 'Pl%')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE 'Pl%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 53ms (Views: 30.1ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 537 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 537"], ["notes", nil], ["number", 537], ["position", "Position 537"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Pl" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.577491', "current_sign_in_at" = '2012-06-29 19:09:38.577491', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.577897', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Pl", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE '%Pl')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE '%Pl')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 97ms (Views: 75.9ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "players"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 538 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 538"], ["notes", nil], ["number", 538], ["position", "Position 538"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.691913', "current_sign_in_at" = '2012-06-29 19:09:38.691913', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.692314', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 49ms (Views: 30.3ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "black"], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball" for 127.0.0.1 at 2012-06-29 13:09:38 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:38.752286', "current_sign_in_at" = '2012-06-29 19:09:38.752286', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:38.752642', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"ball"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "balls"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 51ms (Views: 31.8ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 539 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 539"], ["notes", nil], ["number", 539], ["position", "Position 539"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 540 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 540"], ["notes", nil], ["number", 540], ["position", "Position 540"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 541 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 541"], ["notes", nil], ["number", 541], ["position", "Position 541"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 542 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 542"], ["notes", nil], ["number", 542], ["position", "Position 542"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 543 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 543"], ["notes", nil], ["number", 543], ["position", "Position 543"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 544 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 544"], ["notes", nil], ["number", 544], ["position", "Position 544"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 545 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 545"], ["notes", nil], ["number", 545], ["position", "Position 545"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 546 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 546"], ["notes", nil], ["number", 546], ["position", "Position 546"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 547 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 547"], ["notes", nil], ["number", 547], ["position", "Position 547"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 548 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 548"], ["notes", nil], ["number", 548], ["position", "Position 548"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 549 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 549"], ["notes", nil], ["number", 549], ["position", "Position 549"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 550 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 550"], ["notes", nil], ["number", 550], ["position", "Position 550"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 551 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 551"], ["notes", nil], ["number", 551], ["position", "Position 551"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 552 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 552"], ["notes", nil], ["number", 552], ["position", "Position 552"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 553 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 553"], ["notes", nil], ["number", 553], ["position", "Position 553"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 554 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 554"], ["notes", nil], ["number", 554], ["position", "Position 554"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 555 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 555"], ["notes", nil], ["number", 555], ["position", "Position 555"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 556 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 556"], ["notes", nil], ["number", 556], ["position", "Position 556"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 557 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 557"], ["notes", nil], ["number", 557], ["position", "Position 557"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 558 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 558"], ["notes", nil], ["number", 558], ["position", "Position 558"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 559 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 559"], ["notes", nil], ["number", 559], ["position", "Position 559"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 560 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 560"], ["notes", nil], ["number", 560], ["position", "Position 560"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 561 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 561"], ["notes", nil], ["number", 561], ["position", "Position 561"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 562 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 562"], ["notes", nil], ["number", 562], ["position", "Position 562"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 563 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 563"], ["notes", nil], ["number", 563], ["position", "Position 563"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 564 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 564"], ["notes", nil], ["number", 564], ["position", "Position 564"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 565 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 565"], ["notes", nil], ["number", 565], ["position", "Position 565"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 566 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 566"], ["notes", nil], ["number", 566], ["position", "Position 566"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 567 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 567"], ["notes", nil], ["number", 567], ["position", "Position 567"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 568 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 568"], ["notes", nil], ["number", 568], ["position", "Position 568"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 569 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 569"], ["notes", nil], ["number", 569], ["position", "Position 569"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 570 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 570"], ["notes", nil], ["number", 570], ["position", "Position 570"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 571 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 571"], ["notes", nil], ["number", 571], ["position", "Position 571"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 572 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 572"], ["notes", nil], ["number", 572], ["position", "Position 572"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 573 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 573"], ["notes", nil], ["number", 573], ["position", "Position 573"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 574 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 574"], ["notes", nil], ["number", 574], ["position", "Position 574"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 575 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 575"], ["notes", nil], ["number", 575], ["position", "Position 575"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 576 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 576"], ["notes", nil], ["number", 576], ["position", "Position 576"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 577 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 577"], ["notes", nil], ["number", 577], ["position", "Position 577"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 578 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 578"], ["notes", nil], ["number", 578], ["position", "Position 578"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 579 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 579"], ["notes", nil], ["number", 579], ["position", "Position 579"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 580 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 580"], ["notes", nil], ["number", 580], ["position", "Position 580"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 581 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 581"], ["notes", nil], ["number", 581], ["position", "Position 581"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 582 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 582"], ["notes", nil], ["number", 582], ["position", "Position 582"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 583 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 583"], ["notes", nil], ["number", 583], ["position", "Position 583"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 584 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 584"], ["notes", nil], ["number", 584], ["position", "Position 584"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 585 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 585"], ["notes", nil], ["number", 585], ["position", "Position 585"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 586 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 586"], ["notes", nil], ["number", 586], ["position", "Position 586"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 587 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 587"], ["notes", nil], ["number", 587], ["position", "Position 587"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 588 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 588"], ["notes", nil], ["number", 588], ["position", "Position 588"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 589 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 589"], ["notes", nil], ["number", 589], ["position", "Position 589"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 590 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 590"], ["notes", nil], ["number", 590], ["position", "Position 590"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 591 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 591"], ["notes", nil], ["number", 591], ["position", "Position 591"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 592 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 592"], ["notes", nil], ["number", 592], ["position", "Position 592"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 593 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 593"], ["notes", nil], ["number", 593], ["position", "Position 593"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 594 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 594"], ["notes", nil], ["number", 594], ["position", "Position 594"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 595 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 595"], ["notes", nil], ["number", 595], ["position", "Position 595"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 596 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 596"], ["notes", nil], ["number", 596], ["position", "Position 596"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 597 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 597"], ["notes", nil], ["number", 597], ["position", "Position 597"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 598 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 598"], ["notes", nil], ["number", 598], ["position", "Position 598"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 599 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 599"], ["notes", nil], ["number", 599], ["position", "Position 599"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 600 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 600"], ["notes", nil], ["number", 600], ["position", "Position 600"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 601 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 601"], ["notes", nil], ["number", 601], ["position", "Position 601"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 602 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 602"], ["notes", nil], ["number", 602], ["position", "Position 602"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 603 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 603"], ["notes", nil], ["number", 603], ["position", "Position 603"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 604 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 604"], ["notes", nil], ["number", 604], ["position", "Position 604"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 605 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 605"], ["notes", nil], ["number", 605], ["position", "Position 605"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 606 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 606"], ["notes", nil], ["number", 606], ["position", "Position 606"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 607 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 607"], ["notes", nil], ["number", 607], ["position", "Position 607"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 608 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 608"], ["notes", nil], ["number", 608], ["position", "Position 608"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 609 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 609"], ["notes", nil], ["number", 609], ["position", "Position 609"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 610 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 610"], ["notes", nil], ["number", 610], ["position", "Position 610"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 611 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 611"], ["notes", nil], ["number", 611], ["position", "Position 611"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 612 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 612"], ["notes", nil], ["number", 612], ["position", "Position 612"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 613 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 613"], ["notes", nil], ["number", 613], ["position", "Position 613"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 614 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 614"], ["notes", nil], ["number", 614], ["position", "Position 614"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 615 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 615"], ["notes", nil], ["number", 615], ["position", "Position 615"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 616 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 616"], ["notes", nil], ["number", 616], ["position", "Position 616"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 617 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 617"], ["notes", nil], ["number", 617], ["position", "Position 617"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 618 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 618"], ["notes", nil], ["number", 618], ["position", "Position 618"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 619 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 619"], ["notes", nil], ["number", 619], ["position", "Position 619"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 620 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 620"], ["notes", nil], ["number", 620], ["position", "Position 620"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 621 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 621"], ["notes", nil], ["number", 621], ["position", "Position 621"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 622 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 622"], ["notes", nil], ["number", 622], ["position", "Position 622"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 623 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 623"], ["notes", nil], ["number", 623], ["position", "Position 623"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 624 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 624"], ["notes", nil], ["number", 624], ["position", "Position 624"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 625 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 625"], ["notes", nil], ["number", 625], ["position", "Position 625"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 626 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 626"], ["notes", nil], ["number", 626], ["position", "Position 626"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 627 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 627"], ["notes", nil], ["number", 627], ["position", "Position 627"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 628 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 628"], ["notes", nil], ["number", 628], ["position", "Position 628"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 629 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 629"], ["notes", nil], ["number", 629], ["position", "Position 629"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 630 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 630"], ["notes", nil], ["number", 630], ["position", "Position 630"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 631 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 631"], ["notes", nil], ["number", 631], ["position", "Position 631"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 632 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 632"], ["notes", nil], ["number", 632], ["position", "Position 632"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 633 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 633"], ["notes", nil], ["number", 633], ["position", "Position 633"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 634 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 634"], ["notes", nil], ["number", 634], ["position", "Position 634"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 635 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 635"], ["notes", nil], ["number", 635], ["position", "Position 635"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 636 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 636"], ["notes", nil], ["number", 636], ["position", "Position 636"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 637 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 637"], ["notes", nil], ["number", 637], ["position", "Position 637"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 638 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 638"], ["notes", nil], ["number", 638], ["position", "Position 638"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 639 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 639"], ["notes", nil], ["number", 639], ["position", "Position 639"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 640 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 640"], ["notes", nil], ["number", 640], ["position", "Position 640"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 641 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 641"], ["notes", nil], ["number", 641], ["position", "Position 641"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 642 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 642"], ["notes", nil], ["number", 642], ["position", "Position 642"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 643 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 643"], ["notes", nil], ["number", 643], ["position", "Position 643"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 644 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 644"], ["notes", nil], ["number", 644], ["position", "Position 644"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 645 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 645"], ["notes", nil], ["number", 645], ["position", "Position 645"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 646 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 646"], ["notes", nil], ["number", 646], ["position", "Position 646"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 647 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 647"], ["notes", nil], ["number", 647], ["position", "Position 647"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 648 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 648"], ["notes", nil], ["number", 648], ["position", "Position 648"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 649 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 649"], ["notes", nil], ["number", 649], ["position", "Position 649"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 650 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 650"], ["notes", nil], ["number", 650], ["position", "Position 650"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 651 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 651"], ["notes", nil], ["number", 651], ["position", "Position 651"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 652 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 652"], ["notes", nil], ["number", 652], ["position", "Position 652"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 653 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 653"], ["notes", nil], ["number", 653], ["position", "Position 653"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 654 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 654"], ["notes", nil], ["number", 654], ["position", "Position 654"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 655 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 655"], ["notes", nil], ["number", 655], ["position", "Position 655"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 656 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 656"], ["notes", nil], ["number", 656], ["position", "Position 656"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 657 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 657"], ["notes", nil], ["number", 657], ["position", "Position 657"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 658 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 658"], ["notes", nil], ["number", 658], ["position", "Position 658"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 659 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 659"], ["notes", nil], ["number", 659], ["position", "Position 659"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 660 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 660"], ["notes", nil], ["number", 660], ["position", "Position 660"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 661 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 661"], ["notes", nil], ["number", 661], ["position", "Position 661"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 662 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 662"], ["notes", nil], ["number", 662], ["position", "Position 662"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 663 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 663"], ["notes", nil], ["number", 663], ["position", "Position 663"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 664 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 664"], ["notes", nil], ["number", 664], ["position", "Position 664"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 665 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 665"], ["notes", nil], ["number", 665], ["position", "Position 665"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 666 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 666"], ["notes", nil], ["number", 666], ["position", "Position 666"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 667 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 667"], ["notes", nil], ["number", 667], ["position", "Position 667"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 668 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 668"], ["notes", nil], ["number", 668], ["position", "Position 668"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 669 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 669"], ["notes", nil], ["number", 669], ["position", "Position 669"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.4ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 670 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 670"], ["notes", nil], ["number", 670], ["position", "Position 670"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 671 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 671"], ["notes", nil], ["number", 671], ["position", "Position 671"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 672 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 672"], ["notes", nil], ["number", 672], ["position", "Position 672"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 673 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 673"], ["notes", nil], ["number", 673], ["position", "Position 673"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 674 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 674"], ["notes", nil], ["number", 674], ["position", "Position 674"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 675 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 675"], ["notes", nil], ["number", 675], ["position", "Position 675"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 676 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 676"], ["notes", nil], ["number", 676], ["position", "Position 676"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 677 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 677"], ["notes", nil], ["number", 677], ["position", "Position 677"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 678 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 678"], ["notes", nil], ["number", 678], ["position", "Position 678"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 679 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 679"], ["notes", nil], ["number", 679], ["position", "Position 679"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 680 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 680"], ["notes", nil], ["number", 680], ["position", "Position 680"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 681 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 681"], ["notes", nil], ["number", 681], ["position", "Position 681"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 682 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 682"], ["notes", nil], ["number", 682], ["position", "Position 682"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 683 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 683"], ["notes", nil], ["number", 683], ["position", "Position 683"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 684 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 684"], ["notes", nil], ["number", 684], ["position", "Position 684"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 685 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 685"], ["notes", nil], ["number", 685], ["position", "Position 685"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 686 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 686"], ["notes", nil], ["number", 686], ["position", "Position 686"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 687 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 687"], ["notes", nil], ["number", 687], ["position", "Position 687"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 688 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 688"], ["notes", nil], ["number", 688], ["position", "Position 688"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 689 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 689"], ["notes", nil], ["number", 689], ["position", "Position 689"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 690 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 690"], ["notes", nil], ["number", 690], ["position", "Position 690"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 691 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 691"], ["notes", nil], ["number", 691], ["position", "Position 691"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 692 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 692"], ["notes", nil], ["number", 692], ["position", "Position 692"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 693 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 693"], ["notes", nil], ["number", 693], ["position", "Position 693"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 694 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 694"], ["notes", nil], ["number", 694], ["position", "Position 694"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 695 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 695"], ["notes", nil], ["number", 695], ["position", "Position 695"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 696 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 696"], ["notes", nil], ["number", 696], ["position", "Position 696"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 697 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 697"], ["notes", nil], ["number", 697], ["position", "Position 697"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 698 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 698"], ["notes", nil], ["number", 698], ["position", "Position 698"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 699 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 699"], ["notes", nil], ["number", 699], ["position", "Position 699"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 700 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 700"], ["notes", nil], ["number", 700], ["position", "Position 700"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 701 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 701"], ["notes", nil], ["number", 701], ["position", "Position 701"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 702 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 702"], ["notes", nil], ["number", 702], ["position", "Position 702"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 703 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 703"], ["notes", nil], ["number", 703], ["position", "Position 703"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 704 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 704"], ["notes", nil], ["number", 704], ["position", "Position 704"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 705 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 705"], ["notes", nil], ["number", 705], ["position", "Position 705"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 706 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 706"], ["notes", nil], ["number", 706], ["position", "Position 706"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 707 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 707"], ["notes", nil], ["number", 707], ["position", "Position 707"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 708 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 708"], ["notes", nil], ["number", 708], ["position", "Position 708"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 709 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 709"], ["notes", nil], ["number", 709], ["position", "Position 709"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.3ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 710 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 710"], ["notes", nil], ["number", 710], ["position", "Position 710"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 711 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 711"], ["notes", nil], ["number", 711], ["position", "Position 711"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 712 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 712"], ["notes", nil], ["number", 712], ["position", "Position 712"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 713 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 713"], ["notes", nil], ["number", 713], ["position", "Position 713"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 714 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 714"], ["notes", nil], ["number", 714], ["position", "Position 714"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 715 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 715"], ["notes", nil], ["number", 715], ["position", "Position 715"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 716 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 716"], ["notes", nil], ["number", 716], ["position", "Position 716"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 717 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 717"], ["notes", nil], ["number", 717], ["position", "Position 717"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 718 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 718"], ["notes", nil], ["number", 718], ["position", "Position 718"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 719 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 719"], ["notes", nil], ["number", 719], ["position", "Position 719"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 720 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 720"], ["notes", nil], ["number", 720], ["position", "Position 720"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 721 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 721"], ["notes", nil], ["number", 721], ["position", "Position 721"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 722 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 722"], ["notes", nil], ["number", 722], ["position", "Position 722"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 723 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 723"], ["notes", nil], ["number", 723], ["position", "Position 723"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 724 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 724"], ["notes", nil], ["number", 724], ["position", "Position 724"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 725 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 725"], ["notes", nil], ["number", 725], ["position", "Position 725"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 726 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 726"], ["notes", nil], ["number", 726], ["position", "Position 726"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 727 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 727"], ["notes", nil], ["number", 727], ["position", "Position 727"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 728 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 728"], ["notes", nil], ["number", 728], ["position", "Position 728"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 729 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 729"], ["notes", nil], ["number", 729], ["position", "Position 729"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 730 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 730"], ["notes", nil], ["number", 730], ["position", "Position 730"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 731 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 731"], ["notes", nil], ["number", 731], ["position", "Position 731"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 732 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 732"], ["notes", nil], ["number", 732], ["position", "Position 732"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 733 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 733"], ["notes", nil], ["number", 733], ["position", "Position 733"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 734 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 734"], ["notes", nil], ["number", 734], ["position", "Position 734"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 735 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 735"], ["notes", nil], ["number", 735], ["position", "Position 735"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 736 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 736"], ["notes", nil], ["number", 736], ["position", "Position 736"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 737 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 737"], ["notes", nil], ["number", 737], ["position", "Position 737"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 738 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 738"], ["notes", nil], ["number", 738], ["position", "Position 738"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 739 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 739"], ["notes", nil], ["number", 739], ["position", "Position 739"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 740 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 740"], ["notes", nil], ["number", 740], ["position", "Position 740"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 741 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 741"], ["notes", nil], ["number", 741], ["position", "Position 741"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 742 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 742"], ["notes", nil], ["number", 742], ["position", "Position 742"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 743 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 743"], ["notes", nil], ["number", 743], ["position", "Position 743"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 744 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 744"], ["notes", nil], ["number", 744], ["position", "Position 744"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 745 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 745"], ["notes", nil], ["number", 745], ["position", "Position 745"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 746 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 746"], ["notes", nil], ["number", 746], ["position", "Position 746"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 747 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 747"], ["notes", nil], ["number", 747], ["position", "Position 747"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 748 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 748"], ["notes", nil], ["number", 748], ["position", "Position 748"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 749 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 749"], ["notes", nil], ["number", 749], ["position", "Position 749"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 750 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 750"], ["notes", nil], ["number", 750], ["position", "Position 750"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 751 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 751"], ["notes", nil], ["number", 751], ["position", "Position 751"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 752 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 752"], ["notes", nil], ["number", 752], ["position", "Position 752"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 753 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 753"], ["notes", nil], ["number", 753], ["position", "Position 753"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 754 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 754"], ["notes", nil], ["number", 754], ["position", "Position 754"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 755 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 755"], ["notes", nil], ["number", 755], ["position", "Position 755"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 756 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 756"], ["notes", nil], ["number", 756], ["position", "Position 756"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 757 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 757"], ["notes", nil], ["number", 757], ["position", "Position 757"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 758 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 758"], ["notes", nil], ["number", 758], ["position", "Position 758"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 759 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 759"], ["notes", nil], ["number", 759], ["position", "Position 759"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 760 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 760"], ["notes", nil], ["number", 760], ["position", "Position 760"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 761 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 761"], ["notes", nil], ["number", 761], ["position", "Position 761"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 762 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 762"], ["notes", nil], ["number", 762], ["position", "Position 762"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 763 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 763"], ["notes", nil], ["number", 763], ["position", "Position 763"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 764 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 764"], ["notes", nil], ["number", 764], ["position", "Position 764"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 765 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 765"], ["notes", nil], ["number", 765], ["position", "Position 765"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 766 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 766"], ["notes", nil], ["number", 766], ["position", "Position 766"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 767 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 767"], ["notes", nil], ["number", 767], ["position", "Position 767"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 768 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 768"], ["notes", nil], ["number", 768], ["position", "Position 768"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 769 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 769"], ["notes", nil], ["number", 769], ["position", "Position 769"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 770 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 770"], ["notes", nil], ["number", 770], ["position", "Position 770"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 771 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 771"], ["notes", nil], ["number", 771], ["position", "Position 771"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 772 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 772"], ["notes", nil], ["number", 772], ["position", "Position 772"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 773 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 773"], ["notes", nil], ["number", 773], ["position", "Position 773"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 774 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 774"], ["notes", nil], ["number", 774], ["position", "Position 774"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 775 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 775"], ["notes", nil], ["number", 775], ["position", "Position 775"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 776 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 776"], ["notes", nil], ["number", 776], ["position", "Position 776"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 777 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 777"], ["notes", nil], ["number", 777], ["position", "Position 777"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 778 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 778"], ["notes", nil], ["number", 778], ["position", "Position 778"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 779 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 779"], ["notes", nil], ["number", 779], ["position", "Position 779"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 780 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 780"], ["notes", nil], ["number", 780], ["position", "Position 780"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 781 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 781"], ["notes", nil], ["number", 781], ["position", "Position 781"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 782 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 782"], ["notes", nil], ["number", 782], ["position", "Position 782"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 783 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 783"], ["notes", nil], ["number", 783], ["position", "Position 783"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 784 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 784"], ["notes", nil], ["number", 784], ["position", "Position 784"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 785 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 785"], ["notes", nil], ["number", 785], ["position", "Position 785"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 786 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 786"], ["notes", nil], ["number", 786], ["position", "Position 786"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 787 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 787"], ["notes", nil], ["number", 787], ["position", "Position 787"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 788 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 788"], ["notes", nil], ["number", 788], ["position", "Position 788"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 789 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 789"], ["notes", nil], ["number", 789], ["position", "Position 789"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 790 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 790"], ["notes", nil], ["number", 790], ["position", "Position 790"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 791 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 791"], ["notes", nil], ["number", 791], ["position", "Position 791"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 792 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 792"], ["notes", nil], ["number", 792], ["position", "Position 792"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 793 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 793"], ["notes", nil], ["number", 793], ["position", "Position 793"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 794 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 794"], ["notes", nil], ["number", 794], ["position", "Position 794"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 795 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 795"], ["notes", nil], ["number", 795], ["position", "Position 795"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 796 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 796"], ["notes", nil], ["number", 796], ["position", "Position 796"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 797 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 797"], ["notes", nil], ["number", 797], ["position", "Position 797"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 798 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 798"], ["notes", nil], ["number", 798], ["position", "Position 798"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 799 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 799"], ["notes", nil], ["number", 799], ["position", "Position 799"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 800 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 800"], ["notes", nil], ["number", 800], ["position", "Position 800"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 801 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 801"], ["notes", nil], ["number", 801], ["position", "Position 801"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 802 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 802"], ["notes", nil], ["number", 802], ["position", "Position 802"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 803 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 803"], ["notes", nil], ["number", 803], ["position", "Position 803"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 804 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 804"], ["notes", nil], ["number", 804], ["position", "Position 804"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 805 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 805"], ["notes", nil], ["number", 805], ["position", "Position 805"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 806 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 806"], ["notes", nil], ["number", 806], ["position", "Position 806"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 807 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 807"], ["notes", nil], ["number", 807], ["position", "Position 807"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 808 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 808"], ["notes", nil], ["number", 808], ["position", "Position 808"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 809 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 809"], ["notes", nil], ["number", 809], ["position", "Position 809"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 810 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 810"], ["notes", nil], ["number", 810], ["position", "Position 810"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 811 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 811"], ["notes", nil], ["number", 811], ["position", "Position 811"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 812 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 812"], ["notes", nil], ["number", 812], ["position", "Position 812"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 813 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 813"], ["notes", nil], ["number", 813], ["position", "Position 813"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 814 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 814"], ["notes", nil], ["number", 814], ["position", "Position 814"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 815 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 815"], ["notes", nil], ["number", 815], ["position", "Position 815"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 816 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 816"], ["notes", nil], ["number", 816], ["position", "Position 816"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 817 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 817"], ["notes", nil], ["number", 817], ["position", "Position 817"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 818 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 818"], ["notes", nil], ["number", 818], ["position", "Position 818"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 819 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 819"], ["notes", nil], ["number", 819], ["position", "Position 819"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 820 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 820"], ["notes", nil], ["number", 820], ["position", "Position 820"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 821 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 821"], ["notes", nil], ["number", 821], ["position", "Position 821"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 822 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 822"], ["notes", nil], ["number", 822], ["position", "Position 822"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.2ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 823 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 823"], ["notes", nil], ["number", 823], ["position", "Position 823"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 824 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 824"], ["notes", nil], ["number", 824], ["position", "Position 824"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 825 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 825"], ["notes", nil], ["number", 825], ["position", "Position 825"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 826 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 826"], ["notes", nil], ["number", 826], ["position", "Position 826"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 827 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 827"], ["notes", nil], ["number", 827], ["position", "Position 827"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 828 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 828"], ["notes", nil], ["number", 828], ["position", "Position 828"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 829 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 829"], ["notes", nil], ["number", 829], ["position", "Position 829"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 830 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 830"], ["notes", nil], ["number", 830], ["position", "Position 830"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 831 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 831"], ["notes", nil], ["number", 831], ["position", "Position 831"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 832 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 832"], ["notes", nil], ["number", 832], ["position", "Position 832"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 833 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 833"], ["notes", nil], ["number", 833], ["position", "Position 833"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 834 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 834"], ["notes", nil], ["number", 834], ["position", "Position 834"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 835 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 835"], ["notes", nil], ["number", 835], ["position", "Position 835"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 836 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 836"], ["notes", nil], ["number", 836], ["position", "Position 836"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 837 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 837"], ["notes", nil], ["number", 837], ["position", "Position 837"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 838 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 838"], ["notes", nil], ["number", 838], ["position", "Position 838"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 839 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 839"], ["notes", nil], ["number", 839], ["position", "Position 839"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 840 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 840"], ["notes", nil], ["number", 840], ["position", "Position 840"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 841 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 841"], ["notes", nil], ["number", 841], ["position", "Position 841"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 842 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 842"], ["notes", nil], ["number", 842], ["position", "Position 842"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 843 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 843"], ["notes", nil], ["number", 843], ["position", "Position 843"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 844 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 844"], ["notes", nil], ["number", 844], ["position", "Position 844"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 845 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 845"], ["notes", nil], ["number", 845], ["position", "Position 845"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 846 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 846"], ["notes", nil], ["number", 846], ["position", "Position 846"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 847 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 847"], ["notes", nil], ["number", 847], ["position", "Position 847"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 848 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 848"], ["notes", nil], ["number", 848], ["position", "Position 848"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 849 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 849"], ["notes", nil], ["number", 849], ["position", "Position 849"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 850 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 850"], ["notes", nil], ["number", 850], ["position", "Position 850"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 851 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 851"], ["notes", nil], ["number", 851], ["position", "Position 851"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 852 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 852"], ["notes", nil], ["number", 852], ["position", "Position 852"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 853 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 853"], ["notes", nil], ["number", 853], ["position", "Position 853"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 854 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 854"], ["notes", nil], ["number", 854], ["position", "Position 854"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 855 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 855"], ["notes", nil], ["number", 855], ["position", "Position 855"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 856 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 856"], ["notes", nil], ["number", 856], ["position", "Position 856"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 857 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 857"], ["notes", nil], ["number", 857], ["position", "Position 857"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 858 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 858"], ["notes", nil], ["number", 858], ["position", "Position 858"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 859 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 859"], ["notes", nil], ["number", 859], ["position", "Position 859"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 860 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 860"], ["notes", nil], ["number", 860], ["position", "Position 860"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 861 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 861"], ["notes", nil], ["number", 861], ["position", "Position 861"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 862 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 862"], ["notes", nil], ["number", 862], ["position", "Position 862"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 863 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 863"], ["notes", nil], ["number", 863], ["position", "Position 863"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 864 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 864"], ["notes", nil], ["number", 864], ["position", "Position 864"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 865 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 865"], ["notes", nil], ["number", 865], ["position", "Position 865"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 866 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 866"], ["notes", nil], ["number", 866], ["position", "Position 866"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 867 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 867"], ["notes", nil], ["number", 867], ["position", "Position 867"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 868 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 868"], ["notes", nil], ["number", 868], ["position", "Position 868"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 869 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 869"], ["notes", nil], ["number", 869], ["position", "Position 869"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 870 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 870"], ["notes", nil], ["number", 870], ["position", "Position 870"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 871 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 871"], ["notes", nil], ["number", 871], ["position", "Position 871"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 872 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 872"], ["notes", nil], ["number", 872], ["position", "Position 872"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 873 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 873"], ["notes", nil], ["number", 873], ["position", "Position 873"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 874 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 874"], ["notes", nil], ["number", 874], ["position", "Position 874"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 875 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 875"], ["notes", nil], ["number", 875], ["position", "Position 875"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 876 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 876"], ["notes", nil], ["number", 876], ["position", "Position 876"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 877 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 877"], ["notes", nil], ["number", 877], ["position", "Position 877"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 878 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 878"], ["notes", nil], ["number", 878], ["position", "Position 878"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 879 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 879"], ["notes", nil], ["number", 879], ["position", "Position 879"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 880 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 880"], ["notes", nil], ["number", 880], ["position", "Position 880"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 881 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 881"], ["notes", nil], ["number", 881], ["position", "Position 881"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 882 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 882"], ["notes", nil], ["number", 882], ["position", "Position 882"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 883 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 883"], ["notes", nil], ["number", 883], ["position", "Position 883"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 884 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 884"], ["notes", nil], ["number", 884], ["position", "Position 884"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 885 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 885"], ["notes", nil], ["number", 885], ["position", "Position 885"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 886 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 886"], ["notes", nil], ["number", 886], ["position", "Position 886"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 887 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 887"], ["notes", nil], ["number", 887], ["position", "Position 887"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 888 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 888"], ["notes", nil], ["number", 888], ["position", "Position 888"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 889 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 889"], ["notes", nil], ["number", 889], ["position", "Position 889"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 890 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 890"], ["notes", nil], ["number", 890], ["position", "Position 890"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 891 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 891"], ["notes", nil], ["number", 891], ["position", "Position 891"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 892 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 892"], ["notes", nil], ["number", 892], ["position", "Position 892"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 893 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 893"], ["notes", nil], ["number", 893], ["position", "Position 893"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 894 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 894"], ["notes", nil], ["number", 894], ["position", "Position 894"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 895 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 895"], ["notes", nil], ["number", 895], ["position", "Position 895"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 896 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 896"], ["notes", nil], ["number", 896], ["position", "Position 896"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 897 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 897"], ["notes", nil], ["number", 897], ["position", "Position 897"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 898 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 898"], ["notes", nil], ["number", 898], ["position", "Position 898"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 899 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 899"], ["notes", nil], ["number", 899], ["position", "Position 899"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 900 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 900"], ["notes", nil], ["number", 900], ["position", "Position 900"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 901 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 901"], ["notes", nil], ["number", 901], ["position", "Position 901"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 902 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 902"], ["notes", nil], ["number", 902], ["position", "Position 902"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 903 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 903"], ["notes", nil], ["number", 903], ["position", "Position 903"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 904 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 904"], ["notes", nil], ["number", 904], ["position", "Position 904"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 905 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 905"], ["notes", nil], ["number", 905], ["position", "Position 905"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 906 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 906"], ["notes", nil], ["number", 906], ["position", "Position 906"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 907 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 907"], ["notes", nil], ["number", 907], ["position", "Position 907"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 908 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 908"], ["notes", nil], ["number", 908], ["position", "Position 908"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 909 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 909"], ["notes", nil], ["number", 909], ["position", "Position 909"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 910 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 910"], ["notes", nil], ["number", 910], ["position", "Position 910"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 911 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 911"], ["notes", nil], ["number", 911], ["position", "Position 911"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 912 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 912"], ["notes", nil], ["number", 912], ["position", "Position 912"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 913 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 913"], ["notes", nil], ["number", 913], ["position", "Position 913"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 914 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 914"], ["notes", nil], ["number", 914], ["position", "Position 914"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 915 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 915"], ["notes", nil], ["number", 915], ["position", "Position 915"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 916 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 916"], ["notes", nil], ["number", 916], ["position", "Position 916"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 917 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 917"], ["notes", nil], ["number", 917], ["position", "Position 917"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 918 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 918"], ["notes", nil], ["number", 918], ["position", "Position 918"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 919 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 919"], ["notes", nil], ["number", 919], ["position", "Position 919"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 920 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 920"], ["notes", nil], ["number", 920], ["position", "Position 920"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 921 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 921"], ["notes", nil], ["number", 921], ["position", "Position 921"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 922 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 922"], ["notes", nil], ["number", 922], ["position", "Position 922"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 923 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 923"], ["notes", nil], ["number", 923], ["position", "Position 923"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 924 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 924"], ["notes", nil], ["number", 924], ["position", "Position 924"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 925 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 925"], ["notes", nil], ["number", 925], ["position", "Position 925"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 926 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 926"], ["notes", nil], ["number", 926], ["position", "Position 926"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 927 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 927"], ["notes", nil], ["number", 927], ["position", "Position 927"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 928 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 928"], ["notes", nil], ["number", 928], ["position", "Position 928"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 929 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 929"], ["notes", nil], ["number", 929], ["position", "Position 929"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 930 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 930"], ["notes", nil], ["number", 930], ["position", "Position 930"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 931 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 931"], ["notes", nil], ["number", 931], ["position", "Position 931"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 932 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 932"], ["notes", nil], ["number", 932], ["position", "Position 932"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 933 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 933"], ["notes", nil], ["number", 933], ["position", "Position 933"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 934 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 934"], ["notes", nil], ["number", 934], ["position", "Position 934"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 935 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 935"], ["notes", nil], ["number", 935], ["position", "Position 935"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 936 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 936"], ["notes", nil], ["number", 936], ["position", "Position 936"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 937 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 937"], ["notes", nil], ["number", 937], ["position", "Position 937"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 938 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 938"], ["notes", nil], ["number", 938], ["position", "Position 938"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?page=8" for 127.0.0.1 at 2012-06-29 13:09:39 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:39.580067', "current_sign_in_at" = '2012-06-29 19:09:39.580067', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:39.580457', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"page"=>"8", "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 140  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 189ms (Views: 169.1ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:39 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:39.789820', "current_sign_in_at" = '2012-06-29 19:09:39.789820', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:39.790189', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 80ms (Views: 50.5ms | ActiveRecord: 1.7ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 939 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 939"], ["notes", nil], ["number", 939], ["position", "Position 939"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 940 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 940"], ["notes", nil], ["number", 940], ["position", "Position 940"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 941 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 941"], ["notes", nil], ["number", 941], ["position", "Position 941"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 942 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 942"], ["notes", nil], ["number", 942], ["position", "Position 942"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 943 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 943"], ["notes", nil], ["number", 943], ["position", "Position 943"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 944 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 944"], ["notes", nil], ["number", 944], ["position", "Position 944"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 945 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 945"], ["notes", nil], ["number", 945], ["position", "Position 945"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 946 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 946"], ["notes", nil], ["number", 946], ["position", "Position 946"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 947 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 947"], ["notes", nil], ["number", 947], ["position", "Position 947"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 948 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 948"], ["notes", nil], ["number", 948], ["position", "Position 948"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 949 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 949"], ["notes", nil], ["number", 949], ["position", "Position 949"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 950 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 950"], ["notes", nil], ["number", 950], ["position", "Position 950"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 951 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 951"], ["notes", nil], ["number", 951], ["position", "Position 951"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 952 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 952"], ["notes", nil], ["number", 952], ["position", "Position 952"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 953 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 953"], ["notes", nil], ["number", 953], ["position", "Position 953"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 954 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 954"], ["notes", nil], ["number", 954], ["position", "Position 954"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 955 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 955"], ["notes", nil], ["number", 955], ["position", "Position 955"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 956 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 956"], ["notes", nil], ["number", 956], ["position", "Position 956"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 957 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 957"], ["notes", nil], ["number", 957], ["position", "Position 957"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 958 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 958"], ["notes", nil], ["number", 958], ["position", "Position 958"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:39 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:39.911480', "current_sign_in_at" = '2012-06-29 19:09:39.911480', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:39.911864', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 182ms (Views: 161.8ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 2], ["founded", 2], ["logo_url", nil], ["losses", 2], ["manager", "Manager 2"], ["mascot", nil], ["name", "Team 2"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 2.0], ["wins", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 3], ["founded", 3], ["logo_url", nil], ["losses", 3], ["manager", "Manager 3"], ["mascot", nil], ["name", "Team 3"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 3.0], ["wins", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 959 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 959"], ["notes", nil], ["number", 959], ["position", "Position 959"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 960 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 960"], ["notes", nil], ["number", 960], ["position", "Position 960"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 961 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 961"], ["notes", nil], ["number", 961], ["position", "Position 961"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 962 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 962"], ["notes", nil], ["number", 962], ["position", "Position 962"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+2" for 127.0.0.1 at 2012-06-29 13:09:40 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:40.228342', "current_sign_in_at" = '2012-06-29 19:09:40.228342', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:40.228756', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 2"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 2%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 2%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 59ms (Views: 49.8ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 4], ["founded", 4], ["logo_url", nil], ["losses", 4], ["manager", "Manager 4"], ["mascot", nil], ["name", "Team 4"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 4.0], ["wins", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 5], ["founded", 5], ["logo_url", nil], ["losses", 5], ["manager", "Manager 5"], ["mascot", nil], ["name", "Team 5"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 5.0], ["wins", 5]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 963 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 963"], ["notes", nil], ["number", 963], ["position", "Position 963"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 964 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 964"], ["notes", nil], ["number", 964], ["position", "Position 964"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 965 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 965"], ["notes", nil], ["number", 965], ["position", "Position 965"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 966 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 966"], ["notes", nil], ["number", 966], ["position", "Position 966"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+4" for 127.0.0.1 at 2012-06-29 13:09:40 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:40.384969', "current_sign_in_at" = '2012-06-29 19:09:40.384969', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:40.385377', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 4"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 4%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 4%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 51ms (Views: 41.2ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 6], ["founded", 6], ["logo_url", nil], ["losses", 6], ["manager", "Manager 6"], ["mascot", nil], ["name", "Team 6"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 6.0], ["wins", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 7], ["founded", 7], ["logo_url", nil], ["losses", 7], ["manager", "Manager 7"], ["mascot", nil], ["name", "Team 7"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 7.0], ["wins", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 967 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 967"], ["notes", nil], ["number", 967], ["position", "Position 967"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 968 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 968"], ["notes", nil], ["number", 968], ["position", "Position 968"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 969 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 969"], ["notes", nil], ["number", 969], ["position", "Position 969"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 970 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 970"], ["notes", nil], ["number", 970], ["position", "Position 970"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[injured][1][v]=true" for 127.0.0.1 at 2012-06-29 13:09:40 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:40.526969', "current_sign_in_at" = '2012-06-29 19:09:40.526969', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:40.527395', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"injured"=>{"1"=>{"v"=>"true"}}}, "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.injured = 't'))) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (2, 1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE (((players.injured = 't'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 42ms (Views: 37.8ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 8], ["founded", 8], ["logo_url", nil], ["losses", 8], ["manager", "Manager 8"], ["mascot", nil], ["name", "Team 8"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 8.0], ["wins", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 9], ["founded", 9], ["logo_url", nil], ["losses", 9], ["manager", "Manager 9"], ["mascot", nil], ["name", "Team 9"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 9.0], ["wins", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 971 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 971"], ["notes", nil], ["number", 971], ["position", "Position 971"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 972 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 972"], ["notes", nil], ["number", 972], ["position", "Position 972"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 973 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 973"], ["notes", nil], ["number", 973], ["position", "Position 973"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 974 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 974"], ["notes", nil], ["number", 974], ["position", "Position 974"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=1" for 127.0.0.1 at 2012-06-29 13:09:40 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:40.614518', "current_sign_in_at" = '2012-06-29 19:09:40.614518', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:40.614965', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"1"}}}, "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.team_id = 1))) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE (((players.team_id = 1))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 94ms (Views: 88.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 10], ["founded", 10], ["logo_url", nil], ["losses", 10], ["manager", "Manager 10"], ["mascot", nil], ["name", "Team 10"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 10.0], ["wins", 10]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 11], ["founded", 11], ["logo_url", nil], ["losses", 11], ["manager", "Manager 11"], ["mascot", nil], ["name", "Team 11"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 11.0], ["wins", 11]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 975 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 975"], ["notes", nil], ["number", 975], ["position", "Position 975"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 976 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 976"], ["notes", nil], ["number", 976], ["position", "Position 976"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 977 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 977"], ["notes", nil], ["number", 977], ["position", "Position 977"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 978 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 978"], ["notes", nil], ["number", 978], ["position", "Position 978"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[injured][1][v]=true&f[retired][1][v]=true" for 127.0.0.1 at 2012-06-29 13:09:40 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:40.752236', "current_sign_in_at" = '2012-06-29 19:09:40.752236', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:40.752641', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"injured"=>{"1"=>{"v"=>"true"}}, "retired"=>{"1"=>{"v"=>"true"}}}, "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.injured = 't')) AND ((players.retired = 't'))) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE (((players.injured = 't')) AND ((players.retired = 't'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 38ms (Views: 33.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 12], ["founded", 12], ["logo_url", nil], ["losses", 12], ["manager", "Manager 12"], ["mascot", nil], ["name", "Team 12"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 12.0], ["wins", 12]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 13], ["founded", 13], ["logo_url", nil], ["losses", 13], ["manager", "Manager 13"], ["mascot", nil], ["name", "Team 13"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 13.0], ["wins", 13]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 979 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 979"], ["notes", nil], ["number", 979], ["position", "Position 979"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 980 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 980"], ["notes", nil], ["number", 980], ["position", "Position 980"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 981 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 981"], ["notes", nil], ["number", 981], ["position", "Position 981"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 982 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 982"], ["notes", nil], ["number", 982], ["position", "Position 982"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+12" for 127.0.0.1 at 2012-06-29 13:09:40 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:40.880000', "current_sign_in_at" = '2012-06-29 19:09:40.880000', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:40.880413', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 12"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 12%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 12%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 47ms (Views: 39.2ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 14], ["founded", 14], ["logo_url", nil], ["losses", 14], ["manager", "Manager 14"], ["mascot", nil], ["name", "Team 14"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 14.0], ["wins", 14]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["custom_field", nil], ["division_id", 15], ["founded", 15], ["logo_url", nil], ["losses", 15], ["manager", "Manager 15"], ["mascot", nil], ["name", "Team 15"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["win_percentage", 15.0], ["wins", 15]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 983 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 983"], ["notes", nil], ["number", 983], ["position", "Position 983"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 984 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 984"], ["notes", nil], ["number", 984], ["position", "Position 984"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 985 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 985"], ["notes", nil], ["number", 985], ["position", "Position 985"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 986 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 986"], ["notes", nil], ["number", 986], ["position", "Position 986"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+14&f[team][2][o]=is&f[team][2][v]=1" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.016516', "current_sign_in_at" = '2012-06-29 19:09:41.016516', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.016996', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 14"}, "2"=>{"o"=>"is", "v"=>"1"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 14%')) AND ((teams.name LIKE '1') OR (players.team_id = 1))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 14%')) AND ((teams.name LIKE '1') OR (players.team_id = 1))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 51ms (Views: 39.1ms | ActiveRecord: 0.3ms) Started GET "/admin/player?f[team][1][v]=Team+14&f[team][2][o]=is&f[team][2][v]=2" for 127.0.0.1 at 2012-06-29 13:09:41 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 14"}, "2"=>{"o"=>"is", "v"=>"2"}}}, "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 14%')) AND ((teams.name LIKE '2') OR (players.team_id = 2))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 14%')) AND ((teams.name LIKE '2') OR (players.team_id = 2))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 35ms (Views: 24.2ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 16], ["founded", 16], ["logo_url", nil], ["losses", 16], ["manager", "Manager 16"], ["mascot", nil], ["name", "Team 16"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 16.0], ["wins", 16]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 17], ["founded", 17], ["logo_url", nil], ["losses", 17], ["manager", "Manager 17"], ["mascot", nil], ["name", "Team 17"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 17.0], ["wins", 17]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 987 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 987"], ["notes", nil], ["number", 987], ["position", "Position 987"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 988 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 988"], ["notes", nil], ["number", 988], ["position", "Position 988"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 989 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 989"], ["notes", nil], ["number", 989], ["position", "Position 989"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 990 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 990"], ["notes", nil], ["number", 990], ["position", "Position 990"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.200200', "current_sign_in_at" = '2012-06-29 19:09:41.200200', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.200612', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (2, 1)  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 48ms (Views: 43.7ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 18], ["founded", 18], ["logo_url", nil], ["losses", 18], ["manager", "Manager 18"], ["mascot", nil], ["name", "Team 18"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 18.0], ["wins", 18]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 19], ["founded", 19], ["logo_url", nil], ["losses", 19], ["manager", "Manager 19"], ["mascot", nil], ["name", "Team 19"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 19.0], ["wins", 19]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 991 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 991"], ["notes", nil], ["number", 991], ["position", "Position 991"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 992 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 992"], ["notes", nil], ["number", 992], ["position", "Position 992"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 993 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 993"], ["notes", nil], ["number", 993], ["position", "Position 993"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 994 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 994"], ["notes", nil], ["number", 994], ["position", "Position 994"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+18" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.290162', "current_sign_in_at" = '2012-06-29 19:09:41.290162', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.290607', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 18"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 18%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 18%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 96ms (Views: 88.7ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 20], ["founded", 20], ["logo_url", nil], ["losses", 20], ["manager", "Manager 20"], ["mascot", nil], ["name", "Team 20"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 20.0], ["wins", 20]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 21], ["founded", 21], ["logo_url", nil], ["losses", 21], ["manager", "Manager 21"], ["mascot", nil], ["name", "Team 21"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 21.0], ["wins", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 995 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 995"], ["notes", nil], ["number", 995], ["position", "Position 995"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 996 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 996"], ["notes", nil], ["number", 996], ["position", "Position 996"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 997 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 997"], ["notes", nil], ["number", 997], ["position", "Position 997"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 998 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 998"], ["notes", nil], ["number", 998], ["position", "Position 998"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+20" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.429793', "current_sign_in_at" = '2012-06-29 19:09:41.429793', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.430199', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 20"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 20%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 20%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 48ms (Views: 38.9ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 22], ["founded", 22], ["logo_url", nil], ["losses", 22], ["manager", "Manager 22"], ["mascot", nil], ["name", "Team 22"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 22.0], ["wins", 22]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 23], ["founded", 23], ["logo_url", nil], ["losses", 23], ["manager", "Manager 23"], ["mascot", nil], ["name", "Team 23"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 23.0], ["wins", 23]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 999 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 999"], ["notes", nil], ["number", 999], ["position", "Position 999"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1000 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1000"], ["notes", nil], ["number", 1000], ["position", "Position 1000"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1001 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 1001"], ["notes", nil], ["number", 1001], ["position", "Position 1001"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1002 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1002"], ["notes", nil], ["number", 1002], ["position", "Position 1002"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Player+999" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.568691', "current_sign_in_at" = '2012-06-29 19:09:41.568691', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.569093', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Player 999", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE '%Player 999%')) ORDER BY players.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1)  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.name LIKE '%Player 999%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 41ms (Views: 33.1ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 24], ["founded", 24], ["logo_url", nil], ["losses", 24], ["manager", "Manager 24"], ["mascot", nil], ["name", "Team 24"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 24.0], ["wins", 24]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 25], ["founded", 25], ["logo_url", nil], ["losses", 25], ["manager", "Manager 25"], ["mascot", nil], ["name", "Team 25"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 25.0], ["wins", 25]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1003 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 1003"], ["notes", nil], ["number", 1003], ["position", "Position 1003"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1004 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1004"], ["notes", nil], ["number", 1004], ["position", "Position 1004"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1005 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 1005"], ["notes", nil], ["number", 1005], ["position", "Position 1005"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (46.6ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1006 AND "players"."team_id" = 2) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1006"], ["notes", nil], ["number", 1006], ["position", "Position 1006"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?query=Player+1003" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.698306', "current_sign_in_at" = '2012-06-29 19:09:41.698306', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.698697', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"query"=>"Player 1003", "model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.position LIKE '%Player 1003%')) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE ((players.position LIKE '%Player 1003%')) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 36ms (Views: 28.7ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 26], ["founded", 26], ["logo_url", nil], ["losses", 26], ["manager", "Manager 26"], ["mascot", nil], ["name", "Team 26"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 26.0], ["wins", 26]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 27], ["founded", 27], ["logo_url", nil], ["losses", 27], ["manager", "Manager 27"], ["mascot", nil], ["name", "Team 27"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 27.0], ["wins", 27]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1007 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 1007"], ["notes", nil], ["number", 1007], ["position", "Position 1007"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1008 AND "players"."team_id" = 1) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1008"], ["notes", nil], ["number", 1008], ["position", "Position 1008"], ["retired", true], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1009 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", true], ["name", "Player 1009"], ["notes", nil], ["number", 1009], ["position", "Position 1009"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1010 AND "players"."team_id" = 2) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1010"], ["notes", nil], ["number", 1010], ["position", "Position 1010"], ["retired", false], ["suspended", false], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?f[team][1][v]=Team+26" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.774667', "current_sign_in_at" = '2012-06-29 19:09:41.774667', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.775089', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"f"=>{"team"=>{"1"=>{"v"=>"Team 26"}}}, "model_name"=>"player"} SQL (0.2ms) SELECT "players"."id" AS t0_r0, "players"."created_at" AS t0_r1, "players"."updated_at" AS t0_r2, "players"."deleted_at" AS t0_r3, "players"."team_id" AS t0_r4, "players"."name" AS t0_r5, "players"."position" AS t0_r6, "players"."number" AS t0_r7, "players"."retired" AS t0_r8, "players"."injured" AS t0_r9, "players"."born_on" AS t0_r10, "players"."notes" AS t0_r11, "players"."suspended" AS t0_r12, "teams"."id" AS t1_r0, "teams"."created_at" AS t1_r1, "teams"."updated_at" AS t1_r2, "teams"."division_id" AS t1_r3, "teams"."name" AS t1_r4, "teams"."logo_url" AS t1_r5, "teams"."manager" AS t1_r6, "teams"."ballpark" AS t1_r7, "teams"."mascot" AS t1_r8, "teams"."founded" AS t1_r9, "teams"."wins" AS t1_r10, "teams"."losses" AS t1_r11, "teams"."win_percentage" AS t1_r12, "teams"."revenue" AS t1_r13, "teams"."color" AS t1_r14, "teams"."custom_field" AS t1_r15 FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 26%'))) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(DISTINCT "players"."id") FROM "players" LEFT OUTER JOIN "teams" ON "teams"."id" = "players"."team_id" WHERE (((teams.name LIKE '%Team 26%'))) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 47ms (Views: 39.2ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 28], ["founded", 28], ["logo_url", nil], ["losses", 28], ["manager", "Manager 28"], ["mascot", nil], ["name", "Team 28"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 28.0], ["wins", 28]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1011 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1011"], ["notes", nil], ["number", 1011], ["position", "Position 1011"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1012 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1012"], ["notes", nil], ["number", 1012], ["position", "Position 1012"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player?associated_collection=players&compact=true¤t_action=update&source_abstract_model=team&source_object_id=1" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.839962', "current_sign_in_at" = '2012-06-29 19:09:41.839962', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.840352', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"associated_collection"=>"players", "compact"=>"true", "current_action"=>"update", "source_abstract_model"=>"team", "source_object_id"=>"1", "model_name"=>"player"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 118ms (Views: 43.6ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 29], ["founded", 29], ["logo_url", nil], ["losses", 29], ["manager", "Manager 29"], ["mascot", nil], ["name", "Team 29"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 29.0], ["wins", 29]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 30], ["founded", 30], ["logo_url", nil], ["losses", 30], ["manager", "Manager 30"], ["mascot", nil], ["name", "Team 30"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 30.0], ["wins", 30]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["custom_field", nil], ["division_id", 31], ["founded", 31], ["logo_url", nil], ["losses", 31], ["manager", "Manager 31"], ["mascot", nil], ["name", "Team 31"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["win_percentage", 31.0], ["wins", 31]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00], ["name", "Fan 1"], ["updated_at", Fri, 29 Jun 2012 19:09:41 UTC +00:00]]  (0.1ms) INSERT INTO "fans_teams" ("fan_id", "team_id") VALUES (1, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan/1/edit" for 127.0.0.1 at 2012-06-29 13:09:41 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:41.983590', "current_sign_in_at" = '2012-06-29 19:09:41.983590', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:41.983976', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"fan", "id"=>"1"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" WHERE "fans"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "fans_teams" ON "teams"."id" = "fans_teams"."team_id" WHERE "fans_teams"."fan_id" = 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (31, 30, 29) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (13.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 63ms (Views: 44.2ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "black"], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball?sort=color" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.056559', "current_sign_in_at" = '2012-06-29 19:09:42.056559', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.056882', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"sort"=>"color", "model_name"=>"ball"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.color asc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "balls" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 49ms (Views: 31.2ms | ActiveRecord: 0.2ms) Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 85ms (Views: 81.1ms | ActiveRecord: 0.2ms) Started PUT "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "ball"=>{"color"=>"black"}, "return_to"=>"http://www.example.com/admin/ball?sort=color", "_continue"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Redirected to http://www.example.com/admin/ball?sort=color Filter chain halted as :check_for_cancel rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.2ms) Started GET "/admin/ball?sort=color" for 127.0.0.1 at 2012-06-29 13:09:42 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"sort"=>"color", "model_name"=>"ball"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY balls.color asc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "balls"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 0.3ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "black"], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.246577', "current_sign_in_at" = '2012-06-29 19:09:42.246577', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.246978', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 28.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.3ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["name", "League 3"], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.305095', "current_sign_in_at" = '2012-06-29 19:09:42.305095', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.305451', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"league", "id"=>"1"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (7.0ms) Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 69ms (Views: 49.8ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.383855', "current_sign_in_at" = '2012-06-29 19:09:42.383855', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.384218', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 404 Not Found in 113ms (Views: 92.2ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1013 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1013"], ["notes", nil], ["number", 1013], ["position", "Position 1013"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.508180', "current_sign_in_at" = '2012-06-29 19:09:42.508180', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.508565', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (8.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (14.2ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (8.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 97ms (Views: 79.0ms | ActiveRecord: 0.6ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["custom_field", nil], ["division_id", 32], ["founded", 32], ["logo_url", nil], ["losses", 32], ["manager", "Manager 32"], ["mascot", nil], ["name", "Team 32"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["win_percentage", 32.0], ["wins", 32]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.617877', "current_sign_in_at" = '2012-06-29 19:09:42.617877', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.618231', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 32 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.0ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.0ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 151ms (Views: 132.0ms | ActiveRecord: 0.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1014 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1014"], ["notes", nil], ["number", 1014], ["position", "Position 1014"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.781342', "current_sign_in_at" = '2012-06-29 19:09:42.781342', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.781758', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 78ms (Views: 60.5ms | ActiveRecord: 0.5ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1015 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1015"], ["notes", nil], ["number", 1015], ["position", "Position 1015"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:42 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:42.871343', "current_sign_in_at" = '2012-06-29 19:09:42.871343', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:42.871700', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 139ms (Views: 121.0ms | ActiveRecord: 0.6ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1016 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1016"], ["notes", nil], ["number", 1016], ["position", "Position 1016"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.023285', "current_sign_in_at" = '2012-06-29 19:09:43.023285', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.023717', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 81ms (Views: 61.2ms | ActiveRecord: 0.5ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1017 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1017"], ["notes", nil], ["number", 1017], ["position", "Position 1017"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["custom_field", nil], ["division_id", 33], ["founded", 33], ["logo_url", nil], ["losses", 33], ["manager", "Manager 33"], ["mascot", nil], ["name", "Team 33"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["win_percentage", 33.0], ["wins", 33]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 1"], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 1], ["pick", 1], ["player_id", 1], ["round", 1], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.124073', "current_sign_in_at" = '2012-06-29 19:09:43.124073', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.124453', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 53ms (Views: 34.6ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/players/123this-id-doesnt-exist" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.186548', "current_sign_in_at" = '2012-06-29 19:09:43.186548', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.186833', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"players", "id"=>"123this-id-doesnt-exist"}  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 404 Not Found in 139ms (Views: 47.4ms | ActiveRecord: 1.8ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1018 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1018"], ["notes", nil], ["number", 1018], ["position", "Position 1018"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", " Lorém --1-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.340711', "current_sign_in_at" = '2012-06-29 19:09:43.340711', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.341130', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"comment", "id"=>"1"} Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 48ms (Views: 29.5ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1019 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1019"], ["notes", nil], ["number", 1019], ["position", "Position 1019"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["custom_field", nil], ["division_id", 34], ["founded", 34], ["logo_url", nil], ["losses", 34], ["manager", "Manager 34"], ["mascot", nil], ["name", "Team 34"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["win_percentage", 34.0], ["wins", 34]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:09:43.399998' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.401962', "current_sign_in_at" = '2012-06-29 19:09:43.401962', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.402314', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 52ms (Views: 33.4ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1020 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1020"], ["notes", nil], ["number", 1020], ["position", "Position 1020"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", " Lorém --2-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", " Lorém --3-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1021 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1021"], ["notes", nil], ["number", 1021], ["position", "Position 1021"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 2], ["commentable_type", "Player"], ["content", " Lorém --4-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.469997', "current_sign_in_at" = '2012-06-29 19:09:43.469997', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.470385', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 50ms (Views: 32.2ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1022 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1022"], ["notes", nil], ["number", 1022], ["position", "Position 1022"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.531276', "current_sign_in_at" = '2012-06-29 19:09:43.531276', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.531628', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (62.3ms) Completed 200 OK in 109ms (Views: 89.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1023 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1023"], ["notes", nil], ["number", 1023], ["position", "Position 1023"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.652743', "current_sign_in_at" = '2012-06-29 19:09:43.652743', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.653100', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 48ms (Views: 30.6ms | ActiveRecord: 0.3ms)  (1.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1024 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1024"], ["notes", nil], ["number", 1024], ["position", "Position 1024"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.712668', "current_sign_in_at" = '2012-06-29 19:09:43.712668', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.713027', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 47ms (Views: 29.8ms | ActiveRecord: 0.2ms)  (1.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.771674', "current_sign_in_at" = '2012-06-29 19:09:43.771674', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.772043', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 131ms (Views: 111.6ms | ActiveRecord: 0.4ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:43 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_another"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/new?return_to= Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/player/new?return_to=" for 127.0.0.1 at 2012-06-29 13:09:43 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"return_to"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.0ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 43ms (Views: 39.0ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["custom_field", nil], ["division_id", 35], ["founded", 35], ["logo_url", nil], ["losses", 35], ["manager", "Manager 35"], ["mascot", nil], ["name", "Team 35"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["win_percentage", 35.0], ["wins", 35]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["custom_field", nil], ["division_id", 36], ["founded", 36], ["logo_url", nil], ["losses", 36], ["manager", "Manager 36"], ["mascot", nil], ["name", "Team 36"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["win_percentage", 36.0], ["wins", 36]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["custom_field", nil], ["division_id", 37], ["founded", 37], ["logo_url", nil], ["losses", 37], ["manager", "Manager 37"], ["mascot", nil], ["name", "Team 37"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["win_percentage", 37.0], ["wins", 37]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/fan/new?fan%5Bname%5D=John+Doe&fan%5Bteam_ids%5D%5B%5D=1" for 127.0.0.1 at 2012-06-29 13:09:43 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:43.979295', "current_sign_in_at" = '2012-06-29 19:09:43.979295', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:43.979681', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"fan"=>{"name"=>"John Doe", "team_ids"=>["1"]}, "model_name"=>"fan"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00], ["name", "John Doe"], ["updated_at", Fri, 29 Jun 2012 19:09:43 UTC +00:00]]  (0.1ms) INSERT INTO "fans_teams" ("fan_id", "team_id") VALUES (1, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["item", 1], ["message", "Created John Doe"], ["table", "Fan"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/fan Completed 302 Found in 21ms (ActiveRecord: 0.6ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" LIMIT 1 Team Load (0.0ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = ? LIMIT 1 [["id", 1]] Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "fans_teams" ON "teams"."id" = "fans_teams"."team_id" WHERE "fans_teams"."fan_id" = 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.013975', "current_sign_in_at" = '2012-06-29 19:09:44.013975', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.014365', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.6ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 132ms (Views: 113.2ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:44 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 32ms (Views: 28.5ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["custom_field", nil], ["division_id", 38], ["founded", 38], ["logo_url", nil], ["losses", 38], ["manager", "Manager 38"], ["mascot", nil], ["name", "Team 38"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["win_percentage", 38.0], ["wins", 38]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1025 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1025"], ["notes", nil], ["number", 1025], ["position", "Position 1025"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 2"], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 2], ["pick", 2], ["player_id", 1], ["round", 2], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/new?player%5Bdraft_id%5D=1&player%5Bname%5D=Jackie+Robinson&player%5Bnumber%5D=42&player%5Bposition%5D=Second+baseman" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.212334', "current_sign_in_at" = '2012-06-29 19:09:44.212334', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.212727', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"player"=>{"draft_id"=>"1", "name"=>"Jackie Robinson", "number"=>"42", "position"=>"Second baseman"}, "model_name"=>"player"} Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.1ms) UPDATE "drafts" SET "player_id" = 2, "updated_at" = '2012-06-29 19:09:44.236270' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["item", 2], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 25ms (ActiveRecord: 0.7ms) Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY "players"."id" DESC LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.248023', "current_sign_in_at" = '2012-06-29 19:09:44.248023', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.248383', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 74ms (Views: 56.3ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/1/edit?return_to= Completed 302 Found in 8ms (ActiveRecord: 0.8ms) Started GET "/admin/player/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:09:44 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 45ms (Views: 41.2ms | ActiveRecord: 0.4ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["name", "league 1340996984.450355"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["custom_league_id", 1], ["name", "div 1340996984.450347"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["name", "league 1340996984.454378"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["custom_league_id", 2], ["name", "div 1340996984.454371"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["name", "league 1340996984.4561121"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["custom_league_id", 3], ["name", "div 1340996984.456106"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/league/new?league%5Bdivision_ids%5D%5B%5D=1&league%5Bname%5D=National+League" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.459112', "current_sign_in_at" = '2012-06-29 19:09:44.459112', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.459499', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"league"=>{"division_ids"=>["1"], "name"=>"National League"}, "model_name"=>"league"} Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["name", "National League"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 4, "updated_at" = '2012-06-29 19:09:44.481284' WHERE "divisions"."custom_id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["item", 4], ["message", "Created National League"], ["table", "League"], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/league Completed 302 Found in 23ms (ActiveRecord: 0.7ms) League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY "leagues"."id" DESC LIMIT 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 4  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["custom_field", nil], ["division_id", 39], ["founded", 39], ["logo_url", nil], ["losses", 39], ["manager", "Manager 39"], ["mascot", nil], ["name", "Team 39"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["win_percentage", 39.0], ["wins", 39]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1026 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1026"], ["notes", nil], ["number", 1026], ["position", "Position 1026"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/new?player%5Bname%5D=Player+1026&player%5Bnumber%5D=1026&player%5Bposition%5D=Position+1026&player%5Bteam_id%5D=1" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.496550', "current_sign_in_at" = '2012-06-29 19:09:44.496550', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.496924', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"player"=>{"name"=>"Player 1026", "number"=>"1026", "position"=>"Position 1026", "team_id"=>"1"}, "model_name"=>"player"}  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1026 AND "players"."team_id" = 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (39) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 406 Not Acceptable in 77ms (Views: 56.0ms | ActiveRecord: 0.6ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/new?id=1" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.639461', "current_sign_in_at" = '2012-06-29 19:09:44.639461', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.639848', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"id"=>"1", "model_name"=>"player"}  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" IS NULL AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.9ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 406 Not Acceptable in 77ms (Views: 57.3ms | ActiveRecord: 0.5ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.727037', "current_sign_in_at" = '2012-06-29 19:09:44.727037', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.727407', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.2ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 128ms (Views: 110.3ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson on steroids", "position"=>"", "number"=>"", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_another"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" IS NULL AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.1ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 406 Not Acceptable in 45ms (Views: 39.0ms | ActiveRecord: 0.5ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:44 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:44 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:44.929204', "current_sign_in_at" = '2012-06-29 19:09:44.929204', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:44.929663', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.9ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 71ms (Views: 53.8ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.017777', "current_sign_in_at" = '2012-06-29 19:09:45.017777', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.018147', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 131ms (Views: 47.0ms | ActiveRecord: 1.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["custom_field", nil], ["division_id", 40], ["founded", 40], ["logo_url", nil], ["losses", 40], ["manager", "Manager 40"], ["mascot", nil], ["name", "Team 40"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["win_percentage", 40.0], ["wins", 40]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Team"], ["content", " Lorém --5-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment/1/edit" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.212204', "current_sign_in_at" = '2012-06-29 19:09:45.212204', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.212588', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"comment", "id"=>"1"} Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (5.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 54ms (Views: 36.7ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["custom_field", nil], ["division_id", 41], ["founded", 41], ["logo_url", nil], ["losses", 41], ["manager", "Manager 41"], ["mascot", nil], ["name", "Team 41"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["win_percentage", 41.0], ["wins", 41]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Team"], ["content", " Lorém --6-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.278759', "current_sign_in_at" = '2012-06-29 19:09:45.278759', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.279133', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"comment"} Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc LIMIT 20 OFFSET 0 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 55ms (Views: 36.2ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["custom_field", nil], ["division_id", 42], ["founded", 42], ["logo_url", nil], ["losses", 42], ["manager", "Manager 42"], ["mascot", nil], ["name", "Team 42"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["win_percentage", 42.0], ["wins", 42]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Team"], ["content", " Lorém --7-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1/edit" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.346439', "current_sign_in_at" = '2012-06-29 19:09:45.346439', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.346788', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 42 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.0ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.4ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 140ms (Views: 69.2ms | ActiveRecord: 0.7ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.497096', "current_sign_in_at" = '2012-06-29 19:09:45.497096', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.497466', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "updated_at" = '2012-06-29 19:09:45.502957', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.7ms) Completed 200 OK in 74ms (Views: 45.6ms | ActiveRecord: 1.7ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.602427', "current_sign_in_at" = '2012-06-29 19:09:45.602427', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.602872', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.642897', "current_sign_in_at" = '2012-06-29 19:09:45.642897', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.643262', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 134ms (Views: 47.3ms | ActiveRecord: 1.8ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.788305', "current_sign_in_at" = '2012-06-29 19:09:45.788305', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.788661', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 75ms (Views: 46.8ms | ActiveRecord: 1.7ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600 RSpec::Mocks::MockExpectationError (# received :respond_to? with unexpected arguments expected: (:email) got: (:active_for_authentication?)): rspec-mocks (2.10.1) lib/rspec/mocks/error_generator.rb:80:in `__raise' rspec-mocks (2.10.1) lib/rspec/mocks/error_generator.rb:27:in `raise_unexpected_message_args_error' rspec-mocks (2.10.1) lib/rspec/mocks/proxy.rb:141:in `raise_unexpected_message_args_error' rspec-mocks (2.10.1) lib/rspec/mocks/proxy.rb:131:in `message_received' rspec-mocks (2.10.1) lib/rspec/mocks/method_double.rb:92:in `respond_to?' rspec-mocks (2.10.1) lib/rspec/mocks/any_instance/recorder.rb:173:in `respond_to?' devise (2.1.2) lib/devise/hooks/activatable.rb:6:in `block in ' warden (1.2.1) lib/warden/hooks.rb:14:in `call' warden (1.2.1) lib/warden/hooks.rb:14:in `block in _run_callbacks' warden (1.2.1) lib/warden/hooks.rb:9:in `each' warden (1.2.1) lib/warden/hooks.rb:9:in `_run_callbacks' warden (1.2.1) lib/warden/manager.rb:53:in `_run_callbacks' warden (1.2.1) lib/warden/proxy.rb:179:in `set_user' warden (1.2.1) lib/warden/test/helpers.rb:20:in `block in login_as' warden (1.2.1) lib/warden.rb:38:in `call' warden (1.2.1) lib/warden.rb:38:in `block in test_mode!' warden (1.2.1) lib/warden/hooks.rb:14:in `call' warden (1.2.1) lib/warden/hooks.rb:14:in `block in _run_callbacks' warden (1.2.1) lib/warden/hooks.rb:9:in `each' warden (1.2.1) lib/warden/hooks.rb:9:in `_run_callbacks' warden (1.2.1) lib/warden/manager.rb:53:in `_run_callbacks' warden (1.2.1) lib/warden/proxy.rb:31:in `initialize' warden (1.2.1) lib/warden/manager.rb:33:in `new' warden (1.2.1) lib/warden/manager.rb:33:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/rails_admin_spec.rb:132:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.895173', "current_sign_in_at" = '2012-06-29 19:09:45.895173', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.895544', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls"  Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages"  Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"   (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests" FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues" League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests" NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.2ms) Completed 200 OK in 75ms (Views: 45.9ms | ActiveRecord: 1.8ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:45 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:45 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:45.980678', "current_sign_in_at" = '2012-06-29 19:09:45.980678', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:45.981040', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "balls" Ball Load (0.1ms) SELECT "balls".* FROM "balls" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "cms_basic_pages" Cms::BasicPage Load (0.1ms) SELECT "cms_basic_pages".* FROM "cms_basic_pages" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "categories"  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."content" = 'something' Comment::Confirmed Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."content" = 'something' ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "field_tests"  FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "balls" WHERE "balls"."type" IN ('Hardball') Hardball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "leagues"  League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY updated_at desc LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "users"  User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC LIMIT 100 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_dashboard_history.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.8ms) Completed 200 OK in 180ms (Views: 151.4ms | ActiveRecord: 1.8ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 43], ["founded", 43], ["logo_url", nil], ["losses", 43], ["manager", "Manager 43"], ["mascot", nil], ["name", "Team 43"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 43.0], ["wins", 43]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.193616', "current_sign_in_at" = '2012-06-29 19:09:46.193616', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.194026', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 43 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 26ms (Views: 22.4ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 44], ["founded", 44], ["logo_url", nil], ["losses", 44], ["manager", "Manager 44"], ["mascot", nil], ["name", "Team 44"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 44.0], ["wins", 44]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.233466', "current_sign_in_at" = '2012-06-29 19:09:46.233466', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.233847', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 44 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 52ms (Views: 34.2ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 45], ["founded", 45], ["logo_url", nil], ["losses", 45], ["manager", "Manager 45"], ["mascot", nil], ["name", "Team 45"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 45.0], ["wins", 45]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.298455', "current_sign_in_at" = '2012-06-29 19:09:46.298455', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.298834', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 45 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.0ms) Completed 200 OK in 52ms (Views: 33.8ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 46], ["founded", 46], ["logo_url", nil], ["losses", 46], ["manager", "Manager 46"], ["mascot", nil], ["name", "Team 46"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 46.0], ["wins", 46]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.363157', "current_sign_in_at" = '2012-06-29 19:09:46.363157', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.363523', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.8ms) Completed 200 OK in 38ms (Views: 19.9ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 47], ["founded", 47], ["logo_url", nil], ["losses", 47], ["manager", "Manager 47"], ["mascot", nil], ["name", "Team 47"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 47.0], ["wins", 47]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.494717', "current_sign_in_at" = '2012-06-29 19:09:46.494717', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.495136', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 47 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 27ms (Views: 23.3ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1027 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1027"], ["notes", nil], ["number", 1027], ["position", "Position 1027"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.535844', "current_sign_in_at" = '2012-06-29 19:09:46.535844', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.536204', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"league", "id"=>"1"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "leagues" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 404 Not Found in 50ms (Views: 30.3ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1028 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1028"], ["notes", nil], ["number", 1028], ["position", "Position 1028"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.596983', "current_sign_in_at" = '2012-06-29 19:09:46.596983', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.597380', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 50ms (Views: 31.4ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 48], ["founded", 48], ["logo_url", nil], ["losses", 48], ["manager", "Manager 48"], ["mascot", nil], ["name", "Team 48"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 48.0], ["wins", 48]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.657499', "current_sign_in_at" = '2012-06-29 19:09:46.657499', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.657859', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 48 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 52ms (Views: 34.2ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 49], ["founded", 49], ["logo_url", nil], ["losses", 49], ["manager", "Manager 49"], ["mascot", nil], ["name", "Team 49"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 49.0], ["wins", 49]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.740660', "current_sign_in_at" = '2012-06-29 19:09:46.740660', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.741052', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 26ms (Views: 22.0ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 50], ["founded", 50], ["logo_url", nil], ["losses", 50], ["manager", "Manager 50"], ["mascot", nil], ["name", "Team 50"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 50.0], ["wins", 50]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.867501', "current_sign_in_at" = '2012-06-29 19:09:46.867501', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.867870', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 50 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 30ms (Views: 25.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["custom_field", nil], ["division_id", 51], ["founded", 51], ["logo_url", nil], ["losses", 51], ["manager", "Manager 51"], ["mascot", nil], ["name", "Team 51"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["win_percentage", 51.0], ["wins", 51]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:46 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:46.915763', "current_sign_in_at" = '2012-06-29 19:09:46.915763', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:46.916139', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 51 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 52ms (Views: 33.6ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:46 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 52], ["founded", 52], ["logo_url", nil], ["losses", 52], ["manager", "Manager 52"], ["mascot", nil], ["name", "Team 52"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 52.0], ["wins", 52]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.003819', "current_sign_in_at" = '2012-06-29 19:09:47.003819', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.004220', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 52 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 26ms (Views: 22.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 53], ["founded", 53], ["logo_url", nil], ["losses", 53], ["manager", "Manager 53"], ["mascot", nil], ["name", "Team 53"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 53.0], ["wins", 53]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.060637', "current_sign_in_at" = '2012-06-29 19:09:47.060637', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.061016', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 53 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 26ms (Views: 22.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 54], ["founded", 54], ["logo_url", nil], ["losses", 54], ["manager", "Manager 54"], ["mascot", nil], ["name", "Team 54"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 54.0], ["wins", 54]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.102415', "current_sign_in_at" = '2012-06-29 19:09:47.102415', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.102810', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 54 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 109ms (Views: 31.2ms | ActiveRecord: 0.4ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 55], ["founded", 55], ["logo_url", nil], ["losses", 55], ["manager", "Manager 55"], ["mascot", nil], ["name", "Team 55"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 55.0], ["wins", 55]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.249496', "current_sign_in_at" = '2012-06-29 19:09:47.249496', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.249895', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 55 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 26ms (Views: 22.2ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 56], ["founded", 56], ["logo_url", nil], ["losses", 56], ["manager", "Manager 56"], ["mascot", nil], ["name", "Team 56"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 56.0], ["wins", 56]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.291000', "current_sign_in_at" = '2012-06-29 19:09:47.291000', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.291405', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 56 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.0ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 48ms (Views: 29.4ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 57], ["founded", 57], ["logo_url", nil], ["losses", 57], ["manager", "Manager 57"], ["mascot", nil], ["name", "Team 57"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 57.0], ["wins", 57]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.386845', "current_sign_in_at" = '2012-06-29 19:09:47.386845', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.387237', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"team", "id"=>"1"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = 57 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id Fan Load (0.1ms) SELECT "fans".* FROM "fans" INNER JOIN "fans_teams" ON "fans"."id" = "fans_teams"."fan_id" WHERE "fans_teams"."team_id" = 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Team' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 28ms (Views: 23.8ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1029 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1029"], ["notes", nil], ["number", 1029], ["position", "Position 1029"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1.json" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.431648', "current_sign_in_at" = '2012-06-29 19:09:47.431648', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.432020', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as JSON Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Completed 200 OK in 77ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1030 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1030"], ["notes", nil], ["number", 1030], ["position", "Position 1030"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1.json" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.518357', "current_sign_in_at" = '2012-06-29 19:09:47.518357', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.518771', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as JSON Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 58], ["founded", 58], ["logo_url", nil], ["losses", 58], ["manager", "Manager 58"], ["mascot", nil], ["name", "belongs_to association prepopulated"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 58.0], ["wins", 58]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new?associations[team]=1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.569482', "current_sign_in_at" = '2012-06-29 19:09:47.569482', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.569848', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"associations"=>{"team"=>"1"}, "model_name"=>"player"} Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (58) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 76ms (Views: 58.3ms | ActiveRecord: 0.5ms)  (1.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new?player[name]=Sam" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.655869', "current_sign_in_at" = '2012-06-29 19:09:47.655869', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.656236', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"player"=>{"name"=>"Sam"}, "model_name"=>"player"} WARNING: Can't mass-assign protected attributes: id, suspended  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (58.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 132ms (Views: 113.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1031 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "has_many association prepopulated"], ["notes", nil], ["number", 1031], ["position", "Position 1031"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new?associations[players]=1" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.800802', "current_sign_in_at" = '2012-06-29 19:09:47.800802', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.801180', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"associations"=>{"players"=>"1"}, "model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (0.0ms) SELECT "players".id FROM "players" WHERE "players"."team_id" IS NULL ORDER BY id Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.2ms)  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 87ms (Views: 69.1ms | ActiveRecord: 0.5ms)  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["custom_field", nil], ["division_id", 59], ["founded", 59], ["logo_url", nil], ["losses", 59], ["manager", "Manager 59"], ["mascot", nil], ["name", "Team 58"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["win_percentage", 59.0], ["wins", 59]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1032 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1031"], ["notes", nil], ["number", 1032], ["position", "Position 1032"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 3"], ["created_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 3], ["pick", 3], ["player_id", 1], ["round", 3], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:09:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:47 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:47.903994', "current_sign_in_at" = '2012-06-29 19:09:47.903994', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:47.904388', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (59) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1) Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.2ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (60.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 134ms (Views: 115.9ms | ActiveRecord: 0.6ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.048588', "current_sign_in_at" = '2012-06-29 19:09:48.048588', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.048954', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.9ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 74ms (Views: 56.4ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.132057', "current_sign_in_at" = '2012-06-29 19:09:48.132057', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.132413', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 75ms (Views: 56.9ms | ActiveRecord: 0.3ms)  (2.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.276027', "current_sign_in_at" = '2012-06-29 19:09:48.276027', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.276384', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 75ms (Views: 57.4ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.360933', "current_sign_in_at" = '2012-06-29 19:09:48.360933', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.361314', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.9ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 74ms (Views: 56.0ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.521557', "current_sign_in_at" = '2012-06-29 19:09:48.521557', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.522025', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 37ms (Views: 33.5ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.589550', "current_sign_in_at" = '2012-06-29 19:09:48.589550', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.590025', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.625958', "current_sign_in_at" = '2012-06-29 19:09:48.625958', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.626394', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.9ms)  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 141ms (Views: 123.2ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.779570', "current_sign_in_at" = '2012-06-29 19:09:48.779570', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.780019', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.8ms) Completed 200 OK in 39ms (Views: 21.5ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.833002', "current_sign_in_at" = '2012-06-29 19:09:48.833002', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.833423', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 48ms (Views: 30.7ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.891636', "current_sign_in_at" = '2012-06-29 19:09:48.891636', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.892004', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.9ms) Completed 200 OK in 24ms (Views: 16.6ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.927496', "current_sign_in_at" = '2012-06-29 19:09:48.927496', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.927952', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.0ms) Completed 200 OK in 22ms (Views: 16.7ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.958596', "current_sign_in_at" = '2012-06-29 19:09:48.958596', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.958971', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 22ms (Views: 17.2ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:48 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:48 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:48.992140', "current_sign_in_at" = '2012-06-29 19:09:48.992140', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:48.992546', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 81ms (Views: 76.5ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.082720', "current_sign_in_at" = '2012-06-29 19:09:49.082720', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.083095', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 22ms (Views: 17.2ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.4ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.118241', "current_sign_in_at" = '2012-06-29 19:09:49.118241', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.118807', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.0ms) Completed 200 OK in 22ms (Views: 17.0ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.149725', "current_sign_in_at" = '2012-06-29 19:09:49.149725', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.150103', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.7ms) Completed 200 OK in 21ms (Views: 16.5ms | ActiveRecord: 0.0ms)  (1.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.181460', "current_sign_in_at" = '2012-06-29 19:09:49.181460', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.181846', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 22ms (Views: 17.2ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.213034', "current_sign_in_at" = '2012-06-29 19:09:49.213034', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.213593', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.1ms) Completed 200 OK in 22ms (Views: 16.9ms | ActiveRecord: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/help_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.244695', "current_sign_in_at" = '2012-06-29 19:09:49.244695', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.245109', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"help_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.7ms) Completed 200 OK in 22ms (Views: 17.4ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.349059', "current_sign_in_at" = '2012-06-29 19:09:49.349059', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.349519', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 57ms (Views: 26.6ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"No problem here", "restricted_field"=>"I'm allowed to do that as :custom_role only"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", "I'm allowed to do that as :custom_role only"], ["string_field", "No problem here"], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 42ms (Views: 38.1ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.476285', "current_sign_in_at" = '2012-06-29 19:09:49.476285', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.476662', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (6.4ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (69.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 174ms (Views: 156.3ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"19:09", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 15:09:49 EDT -04:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", Fri, 29 Jun 2012 19:09:00 +0000], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 15:09:49 EDT -04:00]] SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 15:09:49 EDT -04:00], ["updated_at", Fri, 29 Jun 2012 15:09:49 EDT -04:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 15:09:49 EDT -04:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 15:09:49 EDT -04:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 1.0ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 33ms (Views: 28.5ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.718780', "current_sign_in_at" = '2012-06-29 19:09:49.718780', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.719180', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.1ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (11.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 155ms (Views: 136.9ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"19:09", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", Fri, 29 Jun 2012 19:09:00 +0000], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 32ms (Views: 28.0ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:49.944132', "current_sign_in_at" = '2012-06-29 19:09:49.944132', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:49.944578', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 43ms (Views: 25.4ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:49 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"time_field"=>"07:09 PM"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", Fri, 29 Jun 2012 19:09:00 +0000], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:49 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 36ms (Views: 31.0ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:50.054698', "current_sign_in_at" = '2012-06-29 19:09:50.054698', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:50.055112', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 102ms (Views: 25.0ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"timestamp_field"=>"Fri, 29 Jun 2012 19:09:50"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 34ms (Views: 29.8ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:50.218504', "current_sign_in_at" = '2012-06-29 19:09:50.218504', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:50.218874', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.1ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (10.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (61.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 154ms (Views: 136.3ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"June 29, 2012 19:09", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", Fri, 29 Jun 2012 19:09:00 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 33ms (Views: 28.4ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:50.443251', "current_sign_in_at" = '2012-06-29 19:09:50.443251', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:50.443692', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 42ms (Views: 25.3ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"timestamp_field"=>"2012-06-29 19:09:50"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 34ms (Views: 29.5ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:50.550535', "current_sign_in_at" = '2012-06-29 19:09:50.550535', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:50.550978', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 42ms (Views: 24.2ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"format"=>"test for format"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", "test for format"], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 34ms (Views: 29.6ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:50.717419', "current_sign_in_at" = '2012-06-29 19:09:50.717419', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:50.717911', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 46ms (Views: 25.8ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"datetime_field"=>"Fri, 29 Jun 2012 19:09:50"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["date_field", nil], ["datetime_field", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:50 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 34ms (Views: 29.2ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:50 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:50 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:50.824321', "current_sign_in_at" = '2012-06-29 19:09:50.824321', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:50.824696', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.4ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (13.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 165ms (Views: 146.1ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"June 29, 2012 19:09", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["date_field", nil], ["datetime_field", Fri, 29 Jun 2012 19:09:00 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 34ms (Views: 29.8ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:51.062044', "current_sign_in_at" = '2012-06-29 19:09:51.062044', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:51.062466', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (57.1ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 154ms (Views: 136.6ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"2012-06-29 19:09:51", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["date_field", nil], ["datetime_field", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 28ms (Views: 23.7ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:51.283669', "current_sign_in_at" = '2012-06-29 19:09:51.283669', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:51.284140', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 43ms (Views: 25.2ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"date_field"=>"2012-06-29"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.7ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 36ms (Views: 30.9ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:51.396849', "current_sign_in_at" = '2012-06-29 19:09:51.396849', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:51.397344', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 104ms (Views: 25.7ms | ActiveRecord: 0.0ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"date_field"=>"2012-06-29"}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 9ms (ActiveRecord: 0.6ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 35ms (Views: 30.7ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:51.562495', "current_sign_in_at" = '2012-06-29 19:09:51.562495', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:51.562886', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (11.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (61.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 154ms (Views: 136.4ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"June 29, 2012", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Sat, 30 Jun 2012 04:09:51 JST +09:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Sat, 30 Jun 2012 04:09:51 JST +09:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Sat, 30 Jun 2012 04:09:51 JST +09:00], ["updated_at", Sat, 30 Jun 2012 04:09:51 JST +09:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 30 Jun 2012 04:09:51 JST +09:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Sat, 30 Jun 2012 04:09:51 JST +09:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 11ms (ActiveRecord: 0.9ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 33ms (Views: 29.1ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:51.786208', "current_sign_in_at" = '2012-06-29 19:09:51.786208', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:51.786562', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (11.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (59.4ms) Completed 200 OK in 155ms (Views: 136.8ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"June 29, 2012", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>""}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["date_field", Fri, 29 Jun 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", ""], ["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:51 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:51 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 34ms (Views: 29.4ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.009208', "current_sign_in_at" = '2012-06-29 19:09:52.009208', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.009566', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.9ms)  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 84ms (Views: 65.8ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/user/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.106696', "current_sign_in_at" = '2012-06-29 19:09:52.106696', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.107122', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"user"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 99ms (Views: 80.6ms | ActiveRecord: 0.0ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.220175', "current_sign_in_at" = '2012-06-29 19:09:52.220175', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.220635', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_colorpicker.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 44ms (Views: 26.1ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/draft/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.282953', "current_sign_in_at" = '2012-06-29 19:09:52.282953', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.283362', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"draft"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 42ms (Views: 24.2ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.337812', "current_sign_in_at" = '2012-06-29 19:09:52.337812', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.338242', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 42ms (Views: 23.6ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.393668', "current_sign_in_at" = '2012-06-29 19:09:52.393668', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.394079', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 101ms (Views: 82.9ms | ActiveRecord: 0.0ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.509903', "current_sign_in_at" = '2012-06-29 19:09:52.509903', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.510373', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 42ms (Views: 24.6ms | ActiveRecord: 0.0ms)  (4.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.571064', "current_sign_in_at" = '2012-06-29 19:09:52.571064', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.571571', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 42ms (Views: 24.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.627331', "current_sign_in_at" = '2012-06-29 19:09:52.627331', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.627759', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 42ms (Views: 24.4ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["field_test_id", nil], ["title", "title 1"], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:09:52.685217' WHERE "nested_field_tests"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.687331', "current_sign_in_at" = '2012-06-29 19:09:52.687331', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.687717', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"field_test", "id"=>"1"} FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (5.1ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  CACHE (0.0ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (12.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 151ms (Views: 132.8ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.4ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:52 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:52 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:52.852634', "current_sign_in_at" = '2012-06-29 19:09:52.852634', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:52.853035', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.1ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (13.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 159ms (Views: 140.6ms | ActiveRecord: 0.3ms) Started POST "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:53 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"", "content"=>"nested comment content"}}, "return_to"=>"", "_save"=>"", "model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", false], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", ""], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", ""], ["text_field", ""], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "FieldTest"], ["content", "nested comment content"], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["item", 1], ["message", "Created FieldTest #1"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 10ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:53 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 34ms (Views: 29.3ms | ActiveRecord: 0.2ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["field_test_id", nil], ["title", "title 1"], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["field_test_id", nil], ["title", "title 2"], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:09:53.075697' WHERE "nested_field_tests"."id" = 1  (0.0ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:09:53.076198' WHERE "nested_field_tests"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:09:53 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"field_test", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'NestedFieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (56.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (64.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'NestedFieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CACHE (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."id" = 2 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (8.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (81.6ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" CACHE (0.0ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CACHE (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (6.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 147ms (Views: 142.1ms | ActiveRecord: 0.8ms) Started PUT "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:09:53 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "field_test"=>{"string_field"=>"", "text_field"=>"", "integer_field"=>"", "float_field"=>"", "decimal_field"=>"", "datetime_field"=>"", "timestamp_field"=>"", "time_field"=>"", "date_field"=>"", "boolean_field"=>"0", "format"=>"", "retained_dragonfly_asset"=>"", "carrierwave_asset_cache"=>"", "nested_field_tests_attributes"=>{"0"=>{"_destroy"=>"false", "title"=>"nested field test title 1 edited", "comment_attributes"=>{"commentable_type"=>"NestedFieldTest", "commentable_id"=>"1", "content"=>""}, "id"=>"1"}, "1"=>{"_destroy"=>"true", "title"=>"title 2", "comment_attributes"=>{"commentable_type"=>"NestedFieldTest", "commentable_id"=>"2", "content"=>""}, "id"=>"2"}}, "comment_attributes"=>{"commentable_type"=>"FieldTest", "commentable_id"=>"1", "content"=>"\nnested comment content", "id"=>"1"}}, "return_to"=>"http://www.example.com/admin/field_test", "_save"=>"", "model_name"=>"field_test", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "title" = 'nested field test title 1 edited', "updated_at" = '2012-06-29 19:09:53.247215' WHERE "nested_field_tests"."id" = 1 SQL (0.1ms) DELETE FROM "nested_field_tests" WHERE "nested_field_tests"."id" = ? [["id", 2]]  (0.1ms) UPDATE "comments" SET "content" = ' nested comment content', "updated_at" = '2012-06-29 19:09:53.248777' WHERE "comments"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["item", 1], ["message", "Removed Nested_field_tests #2 associations"], ["table", "Field test"], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/field_test Completed 302 Found in 14ms (ActiveRecord: 0.8ms) Started GET "/admin/field_test" for 127.0.0.1 at 2012-06-29 13:09:53 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" ORDER BY field_tests.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 33ms (Views: 28.9ms | ActiveRecord: 0.3ms) FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = ? LIMIT 1 [["id", 1]] NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:53 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:53.297476', "current_sign_in_at" = '2012-06-29 19:09:53.297476', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:53.297854', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (1.1ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (15.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 163ms (Views: 145.2ms | ActiveRecord: 0.3ms) Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:53 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 57ms (Views: 52.5ms | ActiveRecord: 0.3ms)  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:53 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:53.592671', "current_sign_in_at" = '2012-06-29 19:09:53.592671', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:53.593141', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (0.4ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (11.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 90ms (Views: 71.7ms | ActiveRecord: 0.2ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["date_field", nil], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "nested_field_tests" ("created_at", "field_test_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["field_test_id", nil], ["title", "nested title 1"], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "nested_field_tests" SET "field_test_id" = 1, "updated_at" = '2012-06-29 19:09:53.696548' WHERE "nested_field_tests"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/1/edit" for 127.0.0.1 at 2012-06-29 13:09:53 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:53.698548', "current_sign_in_at" = '2012-06-29 19:09:53.698548', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:53.698935', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"field_test", "id"=>"1"} FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.5ms) NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."field_test_id" = 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'NestedFieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 NestedFieldTest Load (0.1ms) SELECT "nested_field_tests".* FROM "nested_field_tests" NestedFieldTest Load (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests" WHERE "nested_field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (15.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_many.html.haml (22.3ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'FieldTest' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 FieldTest Load (0.1ms) SELECT "field_tests".* FROM "field_tests"  CACHE (0.0ms) SELECT "field_tests".* FROM "field_tests" WHERE "field_tests"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (2.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CACHE (0.0ms) SELECT "nested_field_tests".* FROM "nested_field_tests"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_polymorphic_association.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_nested_one.html.haml (7.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 185ms (Views: 166.3ms | ActiveRecord: 0.8ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/field_test/new" for 127.0.0.1 at 2012-06-29 13:09:53 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:53.903009', "current_sign_in_at" = '2012-06-29 19:09:53.903009', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:53.903496', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"field_test"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.0ms) Completed 200 OK in 74ms (Views: 37.0ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:53 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:53 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:53.994379', "current_sign_in_at" = '2012-06-29 19:09:53.994379', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:53.994878', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_enumeration.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 136ms (Views: 93.5ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/category/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.194864', "current_sign_in_at" = '2012-06-29 19:09:54.194864', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.195350', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"category"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 30ms (Views: 23.9ms | ActiveRecord: 0.0ms) Started POST "/admin/category/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "_save"=>"", "model_name"=>"category"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "categories" ("parent_category_id") VALUES (?) [["parent_category_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["item", 1], ["message", "Created Category #1"], ["table", "Category"], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/category Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/category" for 127.0.0.1 at 2012-06-29 13:09:54 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"category"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" ORDER BY categories.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "categories" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 30ms (Views: 25.4ms | ActiveRecord: 0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" LIMIT 1 Started GET "/admin/category/1/edit" for 127.0.0.1 at 2012-06-29 13:09:54 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"category", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "categories" Category Load (0.0ms) SELECT "categories".* FROM "categories" ORDER BY categories.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 28ms (Views: 23.1ms | ActiveRecord: 0.3ms) Started PUT "/admin/category/1/edit" for 127.0.0.1 at 2012-06-29 13:09:54 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "category"=>{"parent_category_id"=>""}, "return_to"=>"http://www.example.com/admin/category", "_save"=>"", "model_name"=>"category", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/category Completed 302 Found in 6ms (ActiveRecord: 0.3ms) Started GET "/admin/category" for 127.0.0.1 at 2012-06-29 13:09:54 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"category"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" ORDER BY categories.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "categories" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 32ms (Views: 28.1ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.394337', "current_sign_in_at" = '2012-06-29 19:09:54.394337', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.394854', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "fans" Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.4ms) Completed 200 OK in 102ms (Views: 97.8ms | ActiveRecord: 0.1ms) Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.9ms) Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (6.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (3.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.0ms) Completed 200 OK in 49ms (Views: 44.6ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.564498', "current_sign_in_at" = '2012-06-29 19:09:54.564498', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.564934', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.0ms)  (0.0ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.2ms)  (0.1ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 73ms (Views: 54.5ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.668870', "current_sign_in_at" = '2012-06-29 19:09:54.668870', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.669324', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 36ms (Views: 32.5ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.720019', "current_sign_in_at" = '2012-06-29 19:09:54.720019', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.720527', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms)  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (7.4ms)  (0.1ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 163ms (Views: 75.7ms | ActiveRecord: 0.5ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.917086', "current_sign_in_at" = '2012-06-29 19:09:54.917086', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.917572', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 34ms (Views: 30.6ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:54 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:54 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:54.986558', "current_sign_in_at" = '2012-06-29 19:09:54.986558', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:54.987042', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 33ms (Views: 29.6ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.109604', "current_sign_in_at" = '2012-06-29 19:09:55.109604', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.110115', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 34ms (Views: 30.9ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.174979', "current_sign_in_at" = '2012-06-29 19:09:55.174979', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.175493', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 34ms (Views: 30.9ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.224637', "current_sign_in_at" = '2012-06-29 19:09:55.224637', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.225062', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 42ms (Views: 24.8ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.308246', "current_sign_in_at" = '2012-06-29 19:09:55.308246', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.308709', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.3ms)  (0.1ms) SELECT COUNT(*) FROM "fans"  Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 124ms (Views: 120.1ms | ActiveRecord: 0.5ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.444048', "current_sign_in_at" = '2012-06-29 19:09:55.444048', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.444474', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.4ms)  (0.1ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms)  (0.1ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (6.4ms) Completed 200 OK in 108ms (Views: 80.8ms | ActiveRecord: 0.5ms)  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.592540', "current_sign_in_at" = '2012-06-29 19:09:55.592540', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.593033', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "divisions"  Division Load (0.1ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 97ms (Views: 93.0ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.739487', "current_sign_in_at" = '2012-06-29 19:09:55.739487', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.739968', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"team"}  (0.1ms) SELECT COUNT(*) FROM "divisions" Division Load (0.0ms) SELECT "divisions".* FROM "divisions" ORDER BY divisions.custom_id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms)  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.6ms)  (0.0ms) SELECT COUNT(*) FROM "fans" Fan Load (0.0ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 51ms (Views: 46.2ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/draft/new" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.810683', "current_sign_in_at" = '2012-06-29 19:09:55.810683', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.811117', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"draft"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 44ms (Views: 24.9ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.0ms) SAVEPOINT active_record_1  (0.4ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.863060', "current_sign_in_at" = '2012-06-29 19:09:55.863060', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.863431', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 404 Not Found in 118ms (Views: 95.9ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1033 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1032"], ["notes", nil], ["number", 1033], ["position", "Position 1033"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:55 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:55.991462', "current_sign_in_at" = '2012-06-29 19:09:55.991462', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:55.991824', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (4.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 52ms (Views: 33.1ms | ActiveRecord: 0.3ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1032"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 404 Not Found in 37ms (Views: 31.5ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1034 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1033"], ["notes", nil], ["number", 1034], ["position", "Position 1034"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:56.109710', "current_sign_in_at" = '2012-06-29 19:09:56.109710', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:56.110172', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 44ms (Views: 26.1ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1033"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 9ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 404 Not Found in 36ms (Views: 29.7ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1035 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1034"], ["notes", nil], ["number", 1035], ["position", "Position 1035"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:56.219739', "current_sign_in_at" = '2012-06-29 19:09:56.219739', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:56.220110', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 108ms (Views: 89.1ms | ActiveRecord: 0.3ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "_continue"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Redirected to http://www.example.com/admin/player Filter chain halted as :check_for_cancel rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.2ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.4ms) Completed 200 OK in 36ms (Views: 30.0ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1036 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1035"], ["notes", nil], ["number", 1036], ["position", "Position 1036"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:56.388241', "current_sign_in_at" = '2012-06-29 19:09:56.388241', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:56.388642', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (5.4ms) Completed 200 OK in 52ms (Views: 30.0ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1035"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.1ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 32ms (Views: 26.5ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1037 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1036"], ["notes", nil], ["number", 1037], ["position", "Position 1037"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:56.500694', "current_sign_in_at" = '2012-06-29 19:09:56.500694', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:56.501148', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 52ms (Views: 27.4ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1036"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.1ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 34ms (Views: 27.3ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1038 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1037"], ["notes", nil], ["number", 1038], ["position", "Position 1038"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:56 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:56.680504', "current_sign_in_at" = '2012-06-29 19:09:56.680504', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:56.681058', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 59ms (Views: 34.6ms | ActiveRecord: 0.3ms) Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 26ms (Views: 21.1ms | ActiveRecord: 0.4ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"http://www.example.com/admin/player/1", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1037"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 30ms (Views: 25.4ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1039 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1038"], ["notes", nil], ["number", 1039], ["position", "Position 1039"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:56 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:56.825596', "current_sign_in_at" = '2012-06-29 19:09:56.825596', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:56.825985', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 49ms (Views: 31.2ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 24ms (Views: 19.2ms | ActiveRecord: 0.4ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"http://www.example.com/admin/player/1", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1038"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/1 Completed 302 Found in 7ms (ActiveRecord: 0.6ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:56 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 24ms (Views: 19.6ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:56 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1040 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1039"], ["notes", nil], ["number", 1040], ["position", "Position 1040"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/cms~basic_page/new" for 127.0.0.1 at 2012-06-29 13:09:57 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.395404', "current_sign_in_at" = '2012-06-29 19:09:57.395404', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.395760', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"cms~basic_page"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (60.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 105ms (Views: 87.3ms | ActiveRecord: 0.0ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_1@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_1@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :create_player ', "updated_at" = '2012-06-29 19:09:57.514818' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:57 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.519719', "current_sign_in_at" = '2012-06-29 19:09:57.519719', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.520122', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.521092', "current_sign_in_at" = '2012-06-29 19:09:57.521092', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.521310', "roles" = '--- - :admin - :read_player - :create_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE ('t'='f') ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE ('t'='f') ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.0ms)  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE ('t'='f') ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 63ms (Views: 42.6ms | ActiveRecord: 0.3ms) Started POST "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:57 -0600 Processing by RailsAdmin::MainController#new as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", ""], ["number", 42], ["position", "Second baseman"], ["retired", false], ["suspended", true], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["item", 1], ["message", "Created Jackie Robinson"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["username", "username_1@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 11ms (ActiveRecord: 0.7ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:57 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 26ms (Views: 18.8ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_2@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_2@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :create_player ', "updated_at" = '2012-06-29 19:09:57.646011' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1041 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1040"], ["notes", nil], ["number", 1041], ["position", "Position 1041"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:57 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.652988', "current_sign_in_at" = '2012-06-29 19:09:57.652988', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.653382', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.654349', "current_sign_in_at" = '2012-06-29 19:09:57.654349', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.654564', "roles" = '--- - :admin - :read_player - :create_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 82ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `edit' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3396794431562854403__process_action__981929149043207495__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:139:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_3@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_3@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :show_in_app_player ', "updated_at" = '2012-06-29 19:09:57.852900' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1042 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1041"], ["notes", nil], ["number", 1042], ["position", "Position 1042"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:57 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.859892', "current_sign_in_at" = '2012-06-29 19:09:57.859892', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.860313', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.861195', "current_sign_in_at" = '2012-06-29 19:09:57.861195', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.861409', "roles" = '--- - :admin - :read_player - :show_in_app_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 46ms (Views: 23.0ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:57 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 20ms (Views: 13.2ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_4@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_4@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:57 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "updated_at" = '2012-06-29 19:09:57.945596', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:57 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.947474', "current_sign_in_at" = '2012-06-29 19:09:57.947474', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.947856', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:57.948675', "current_sign_in_at" = '2012-06-29 19:09:57.948675', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:57.948890', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML Completed 500 Internal Server Error in 3ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:13:in `initialize' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `new' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `block in authorize_with' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `instance_eval' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `_authorize!' activesupport (3.2.6) lib/active_support/callbacks.rb:429:in `_run__3396794431562854403__process_action__1937212729538839365__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:54:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_5@example.com' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_5@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "updated_at" = '2012-06-29 19:09:58.078947', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.082310', "current_sign_in_at" = '2012-06-29 19:09:58.082310', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.082870', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.084166', "current_sign_in_at" = '2012-06-29 19:09:58.084166', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.084475', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Completed 500 Internal Server Error in 4ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:13:in `initialize' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `new' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/config.rb:143:in `block in authorize_with' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `instance_eval' /Users/sferik/Projects/Ruby/gems/rails_admin/app/controllers/rails_admin/application_controller.rb:47:in `_authorize!' activesupport (3.2.6) lib/active_support/callbacks.rb:429:in `_run__3396794431562854403__process_action__697020022403828685__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:59:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_6@example.com' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_6@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :update_player ', "updated_at" = '2012-06-29 19:09:58.178801' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1043 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1042"], ["notes", nil], ["number", 1043], ["position", "Position 1043"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.186048', "current_sign_in_at" = '2012-06-29 19:09:58.186048', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.186452', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.187354', "current_sign_in_at" = '2012-06-29 19:09:58.187354', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.187573', "roles" = '--- - :admin - :read_player - :update_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 23ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `edit' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3396794431562854403__process_action__981929149043207495__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:167:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_7@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_7@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :update_player ', "updated_at" = '2012-06-29 19:09:58.287715' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1044 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1043"], ["notes", nil], ["number", 1044], ["position", "Position 1044"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.295040', "current_sign_in_at" = '2012-06-29 19:09:58.295040', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.295435', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.296342', "current_sign_in_at" = '2012-06-29 19:09:58.296342', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.296564', "roles" = '--- - :admin - :read_player - :update_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE ('t'='f') ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE ('t'='f') ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE ('t'='f') ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 119ms (Views: 47.7ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:58 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Position 1044", "number"=>"1044", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1044 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "notes" = '', "updated_at" = '2012-06-29 19:09:58.436379' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["item", 1], ["message", "Changed name, notes"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["username", "username_7@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 14ms (ActiveRecord: 0.8ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:58 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 29ms (Views: 21.5ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_8@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_8@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :update_player ', "updated_at" = '2012-06-29 19:09:58.486919' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1045 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1044"], ["notes", nil], ["number", 1045], ["position", "Position 1045"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.494404', "current_sign_in_at" = '2012-06-29 19:09:58.494404', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.494825', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.495809', "current_sign_in_at" = '2012-06-29 19:09:58.495809', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.496031', "roles" = '--- - :admin - :read_player - :update_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 28ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `delete' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3396794431562854403__process_action__1203433097508810813__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:173:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_9@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_9@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :history_player ', "updated_at" = '2012-06-29 19:09:58.613480' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1046 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1045"], ["notes", nil], ["number", 1046], ["position", "Position 1046"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.620989', "current_sign_in_at" = '2012-06-29 19:09:58.620989', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.621448', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.622524', "current_sign_in_at" = '2012-06-29 19:09:58.622524', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.622761', "roles" = '--- - :admin - :read_player - :history_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 73ms (Views: 31.2ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:58 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.2ms) Completed 200 OK in 22ms (Views: 13.9ms | ActiveRecord: 0.4ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_10@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_10@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:09:58.735667' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.740957', "current_sign_in_at" = '2012-06-29 19:09:58.740957', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.741434', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.742530', "current_sign_in_at" = '2012-06-29 19:09:58.742530', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.742767', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"} Completed 500 Internal Server Error in 31ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `new' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:469:in `_run__3396794431562854403__process_action__3448431274745309644__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:106:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_11@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_11@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:09:58.857307' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.862472', "current_sign_in_at" = '2012-06-29 19:09:58.862472', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.862911', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.863895', "current_sign_in_at" = '2012-06-29 19:09:58.863895', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.864119', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Completed 500 Internal Server Error in 21ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `index' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:469:in `_run__3396794431562854403__process_action__697020022403828685__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:101:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_12@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_12@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:09:58.960928' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1047 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1046"], ["notes", nil], ["number", 1047], ["position", "Position 1047"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1048 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1047"], ["notes", nil], ["number", 1048], ["position", "Position 1048"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:58 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.978275', "current_sign_in_at" = '2012-06-29 19:09:58.978275', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.978719', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:58.979740', "current_sign_in_at" = '2012-06-29 19:09:58.979740', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:58.979966', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 42ms (Views: 14.0ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_13@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_13@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player ', "updated_at" = '2012-06-29 19:09:59.036219' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.041700', "current_sign_in_at" = '2012-06-29 19:09:59.041700', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.042174', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.043232', "current_sign_in_at" = '2012-06-29 19:09:59.043232', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.043462', "roles" = '--- - :admin - :read_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#dashboard as HTML  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY updated_at desc LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 33ms (Views: 8.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_14@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_14@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :manage_player ', "updated_at" = '2012-06-29 19:09:59.090721' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1049 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1048"], ["notes", nil], ["number", 1049], ["position", "Position 1049"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.098474', "current_sign_in_at" = '2012-06-29 19:09:59.098474', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.098989', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.100086', "current_sign_in_at" = '2012-06-29 19:09:59.100086', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.100321', "roles" = '--- - :admin - :manage_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 63ms (Views: 35.9ms | ActiveRecord: 0.2ms) Started GET "/admin/player/1" for 127.0.0.1 at 2012-06-29 13:09:59 -0600 Processing by RailsAdmin::MainController#show as HTML Parameters: {"model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.3ms) Completed 200 OK in 81ms (Views: 73.4ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_15@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_15@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:09:59.264488' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1050 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1049"], ["notes", nil], ["number", 1050], ["position", "Position 1050"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1051 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1050"], ["notes", nil], ["number", 1051], ["position", "Position 1051"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.273884', "current_sign_in_at" = '2012-06-29 19:09:59.273884', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.274349', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.275308', "current_sign_in_at" = '2012-06-29 19:09:59.275308', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.275529', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' AND "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1049"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["username", "username_15@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 31ms (ActiveRecord: 0.6ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 2 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_16@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_16@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:09:59.318076' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1052 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1051"], ["notes", nil], ["number", 1052], ["position", "Position 1052"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1053 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1052"], ["notes", nil], ["number", 1053], ["position", "Position 1053"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.327564', "current_sign_in_at" = '2012-06-29 19:09:59.327564', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.327963', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.328895', "current_sign_in_at" = '2012-06-29 19:09:59.328895', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.329116', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' AND "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.2ms) Completed 200 OK in 41ms (Views: 16.3ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_17@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_17@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:09:59.382574' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1054 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1053"], ["notes", nil], ["number", 1054], ["position", "Position 1054"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.389851', "current_sign_in_at" = '2012-06-29 19:09:59.389851', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.390250', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.391490', "current_sign_in_at" = '2012-06-29 19:09:59.391490', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.391706', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 21ms CanCan::AccessDenied (You are not authorized to access this page.): cancan (1.6.8) lib/cancan/ability.rb:202:in `authorize!' /Users/sferik/Projects/Ruby/gems/rails_admin/lib/rails_admin/extensions/cancan/authorization_adapter.rb:22:in `authorize' activesupport (3.2.6) lib/active_support/core_ext/object/try.rb:36:in `try' (eval):4:in `delete' actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.6) lib/active_support/callbacks.rb:480:in `_run__3396794431562854403__process_action__1203433097508810813__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action' activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call' rack-pjax (0.5.9) lib/rack/pjax.rb:12:in `call' warden (1.2.1) lib/warden/manager.rb:35:in `block in call' warden (1.2.1) lib/warden/manager.rb:34:in `catch' warden (1.2.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call' remotipart (1.0.2) lib/remotipart/middleware.rb:30:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__282826148953729781__call__1828866326355449091__callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.6) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call' dragonfly (0.9.12) lib/dragonfly/middleware.rb:13:in `call' rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward' rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch' rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup' rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!' rack-cache (1.2) lib/rack/cache/context.rb:51:in `call' railties (3.2.6) lib/rails/engine.rb:479:in `call' railties (3.2.6) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/builder.rb:134:in `call' rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call' rack (1.4.1) lib/rack/urlmap.rb:49:in `each' rack (1.4.1) lib/rack/urlmap.rb:49:in `call' rack-test (0.6.1) lib/rack/mock_session.rb:30:in `request' rack-test (0.6.1) lib/rack/test.rb:219:in `process_request' rack-test (0.6.1) lib/rack/test.rb:57:in `get' /Users/sferik/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get' capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process' capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit' capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit' capybara (1.1.2) lib/capybara/session.rb:157:in `visit' capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit' /Users/sferik/Projects/Ruby/gems/rails_admin/spec/integration/authorization/cancan_spec.rb:263:in `block (3 levels) in ' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `instance_eval' rspec-core (2.10.1) lib/rspec/core/example.rb:87:in `block in run' rspec-core (2.10.1) lib/rspec/core/example.rb:195:in `with_around_each_hooks' rspec-core (2.10.1) lib/rspec/core/example.rb:84:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:353:in `block in run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:349:in `run_examples' rspec-core (2.10.1) lib/rspec/core/example_group.rb:335:in `run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `block in run' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `map' rspec-core (2.10.1) lib/rspec/core/example_group.rb:336:in `run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `map' rspec-core (2.10.1) lib/rspec/core/command_line.rb:28:in `block in run' rspec-core (2.10.1) lib/rspec/core/reporter.rb:34:in `report' rspec-core (2.10.1) lib/rspec/core/command_line.rb:25:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:69:in `run' rspec-core (2.10.1) lib/rspec/core/runner.rb:10:in `block in autorun'  (1.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_18@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_18@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :read_player - :destroy_player ', "updated_at" = '2012-06-29 19:09:59.494386' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1055 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1054"], ["notes", nil], ["number", 1055], ["position", "Position 1055"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.501226', "current_sign_in_at" = '2012-06-29 19:09:59.501226', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.501591', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.502435', "current_sign_in_at" = '2012-06-29 19:09:59.502435', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.502648', "roles" = '--- - :admin - :read_player - :destroy_player ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.1ms) Completed 200 OK in 34ms (Views: 12.8ms | ActiveRecord: 0.2ms) Started DELETE "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:59 -0600 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1054"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["username", "username_18@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 9ms (ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:09:59 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 'f' ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" WHERE "players"."retired" = 'f' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.0ms) Completed 200 OK in 27ms (Views: 18.4ms | ActiveRecord: 0.2ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_19@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_19@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_20@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_20@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:09:59.591996' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1056 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1055"], ["notes", nil], ["number", 1056], ["position", "Position 1056"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.599012', "current_sign_in_at" = '2012-06-29 19:09:59.599012', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.599419', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.600326', "current_sign_in_at" = '2012-06-29 19:09:59.600326', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.600539', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.601170', "current_sign_in_at" = '2012-06-29 19:09:59.601170', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.601380', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.5ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 83ms (Views: 60.5ms | ActiveRecord: 0.5ms)  (1.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_21@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_21@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_22@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_22@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:09:59.697491' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/new" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.702541', "current_sign_in_at" = '2012-06-29 19:09:59.702541', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.702977', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.703995', "current_sign_in_at" = '2012-06-29 19:09:59.703995', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.704220', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.704871', "current_sign_in_at" = '2012-06-29 19:09:59.704871', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.705084', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#new as HTML Parameters: {"model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms)  (0.1ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (4.4ms)  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 81ms (Views: 59.1ms | ActiveRecord: 0.4ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_23@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_23@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_24@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_24@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:09:59.800145' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1057 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1056"], ["notes", nil], ["number", 1057], ["position", "Position 1057"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.807773', "current_sign_in_at" = '2012-06-29 19:09:59.807773', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.808224', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.809281', "current_sign_in_at" = '2012-06-29 19:09:59.809281', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.809509', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.810171', "current_sign_in_at" = '2012-06-29 19:09:59.810171', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.810401', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (1.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (46.3ms) Completed 200 OK in 99ms (Views: 69.9ms | ActiveRecord: 0.2ms)  (1.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_25@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_25@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_26@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_26@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:09:59.926858' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1058 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1057"], ["notes", nil], ["number", 1058], ["position", "Position 1058"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:09:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:09:59 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.933797', "current_sign_in_at" = '2012-06-29 19:09:59.933797', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.934183', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.935091', "current_sign_in_at" = '2012-06-29 19:09:59.935091', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.935325', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:09:59.935969', "current_sign_in_at" = '2012-06-29 19:09:59.935969', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:09:59.936198', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (7.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (5.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.0ms) Completed 200 OK in 95ms (Views: 72.9ms | ActiveRecord: 0.6ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_27@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_27@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_28@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_28@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:10:00.044800' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1059 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1058"], ["notes", nil], ["number", 1059], ["position", "Position 1059"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:10:00 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.052021', "current_sign_in_at" = '2012-06-29 19:10:00.052021', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.052440', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.053344', "current_sign_in_at" = '2012-06-29 19:10:00.053344', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.053599', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.054225', "current_sign_in_at" = '2012-06-29 19:10:00.054225', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.054457', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 51ms (Views: 29.7ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_29@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_29@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_30@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_30@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin ', "updated_at" = '2012-06-29 19:10:00.119246' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:10:00 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.124618', "current_sign_in_at" = '2012-06-29 19:10:00.124618', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.125039', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.126151', "current_sign_in_at" = '2012-06-29 19:10:00.126151', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.126485', "roles" = '--- [] ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.127369', "current_sign_in_at" = '2012-06-29 19:10:00.127369', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.127675', "roles" = '--- - :admin ' WHERE "users"."id" = 3 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "teams"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 73ms (Views: 43.4ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_31@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_31@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :test_exception ', "updated_at" = '2012-06-29 19:10:00.212291' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1060 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1059"], ["notes", nil], ["number", 1060], ["position", "Position 1060"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1061 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1060"], ["notes", nil], ["number", 1061], ["position", "Position 1061"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:10:00 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.221395', "current_sign_in_at" = '2012-06-29 19:10:00.221395', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.221800', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.222748', "current_sign_in_at" = '2012-06-29 19:10:00.222748', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.222992', "roles" = '--- - :admin - :test_exception ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 't' AND "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (2.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 97ms (Views: 71.4ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_32@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_32@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - :admin - :test_exception ', "updated_at" = '2012-06-29 19:10:00.333598' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1062 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1061"], ["notes", nil], ["number", 1062], ["position", "Position 1062"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1063 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1062"], ["notes", nil], ["number", 1063], ["position", "Position 1063"], ["retired", true], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:10:00 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.342474', "current_sign_in_at" = '2012-06-29 19:10:00.342474', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.342864', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:00.343797', "current_sign_in_at" = '2012-06-29 19:10:00.343797', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:00.344000', "roles" = '--- - :admin - :test_exception ' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."retired" = 't' AND "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 SQL (0.1ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["item", 2], ["message", "Destroyed Player 1062"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["username", "username_32@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 27ms (ActiveRecord: 0.7ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 60], ["founded", 60], ["logo_url", nil], ["losses", 60], ["manager", "Manager 60"], ["mascot", nil], ["name", "Team 59"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 60.0], ["wins", 60]]  (0.0ms) RELEASE SAVEPOINT active_record_1 TeamWithNumberedPlayers Load (0.1ms) SELECT "teams".* FROM "teams" LIMIT 1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 123 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1063"], ["notes", nil], ["number", 123], ["position", "Position 1064"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" IS NULL  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" LIMIT 1 Processing by RailsAdmin::MainController#index as JSON Parameters: {"model_name"=>"player", "source_object_id"=>1, "source_abstract_model"=>"team_with_numbered_players", "associated_collection"=>"numbered_players", "current_action"=>:create, "compact"=>true} TeamWithNumberedPlayers Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Completed 200 OK in 28ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 61], ["founded", 61], ["logo_url", nil], ["losses", 61], ["manager", "Manager 61"], ["mascot", nil], ["name", "Team 60"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 61.0], ["wins", 61]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 62], ["founded", 62], ["logo_url", nil], ["losses", 62], ["manager", "Manager 62"], ["mascot", nil], ["name", "Team 61"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 62.0], ["wins", 62]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 63], ["founded", 63], ["logo_url", nil], ["losses", 63], ["manager", "Manager 63"], ["mascot", nil], ["name", "Team 62"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 63.0], ["wins", 63]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 64], ["founded", 64], ["logo_url", nil], ["losses", 64], ["manager", "Manager 64"], ["mascot", nil], ["name", "Team 63"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 64.0], ["wins", 64]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 65], ["founded", 65], ["logo_url", nil], ["losses", 65], ["manager", "Manager 65"], ["mascot", nil], ["name", "Team 64"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 65.0], ["wins", 65]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 66], ["founded", 66], ["logo_url", nil], ["losses", 66], ["manager", "Manager 66"], ["mascot", nil], ["name", "Team 65"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 66.0], ["wins", 66]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 67], ["founded", 67], ["logo_url", nil], ["losses", 67], ["manager", "Manager 67"], ["mascot", nil], ["name", "Team 66"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 67.0], ["wins", 67]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 68], ["founded", 68], ["logo_url", nil], ["losses", 68], ["manager", "Manager 68"], ["mascot", nil], ["name", "Team 67"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 68.0], ["wins", 68]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 69], ["founded", 69], ["logo_url", nil], ["losses", 69], ["manager", "Manager 69"], ["mascot", nil], ["name", "Team 68"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 69.0], ["wins", 69]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 70], ["founded", 70], ["logo_url", nil], ["losses", 70], ["manager", "Manager 70"], ["mascot", nil], ["name", "Team 69"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 70.0], ["wins", 70]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 71], ["founded", 71], ["logo_url", nil], ["losses", 71], ["manager", "Manager 71"], ["mascot", nil], ["name", "Team 70"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 71.0], ["wins", 71]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 72], ["founded", 72], ["logo_url", nil], ["losses", 72], ["manager", "Manager 72"], ["mascot", nil], ["name", "Team 71"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 72.0], ["wins", 72]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 73], ["founded", 73], ["logo_url", nil], ["losses", 73], ["manager", "Manager 73"], ["mascot", nil], ["name", "Team 72"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 73.0], ["wins", 73]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 74], ["founded", 74], ["logo_url", nil], ["losses", 74], ["manager", "Manager 74"], ["mascot", nil], ["name", "Team 73"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 74.0], ["wins", 74]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 75], ["founded", 75], ["logo_url", nil], ["losses", 75], ["manager", "Manager 75"], ["mascot", nil], ["name", "Team 74"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 75.0], ["wins", 75]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 76], ["founded", 76], ["logo_url", nil], ["losses", 76], ["manager", "Manager 76"], ["mascot", nil], ["name", "Team 75"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 76.0], ["wins", 76]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 77], ["founded", 77], ["logo_url", nil], ["losses", 77], ["manager", "Manager 77"], ["mascot", nil], ["name", "Team 76"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 77.0], ["wins", 77]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 78], ["founded", 78], ["logo_url", nil], ["losses", 78], ["manager", "Manager 78"], ["mascot", nil], ["name", "Team 77"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 78.0], ["wins", 78]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 79], ["founded", 79], ["logo_url", nil], ["losses", 79], ["manager", "Manager 79"], ["mascot", nil], ["name", "Team 78"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 79.0], ["wins", 79]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 80], ["founded", 80], ["logo_url", nil], ["losses", 80], ["manager", "Manager 80"], ["mascot", nil], ["name", "Team 79"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 80.0], ["wins", 80]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 81], ["founded", 81], ["logo_url", nil], ["losses", 81], ["manager", "Manager 81"], ["mascot", nil], ["name", "Team 80"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 81.0], ["wins", 81]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 82], ["founded", 82], ["logo_url", nil], ["losses", 82], ["manager", "Manager 82"], ["mascot", nil], ["name", "Team 81"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 82.0], ["wins", 82]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 83], ["founded", 83], ["logo_url", nil], ["losses", 83], ["manager", "Manager 83"], ["mascot", nil], ["name", "Team 82"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 83.0], ["wins", 83]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 84], ["founded", 84], ["logo_url", nil], ["losses", 84], ["manager", "Manager 84"], ["mascot", nil], ["name", "Team 83"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 84.0], ["wins", 84]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 85], ["founded", 85], ["logo_url", nil], ["losses", 85], ["manager", "Manager 85"], ["mascot", nil], ["name", "Team 84"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 85.0], ["wins", 85]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 86], ["founded", 86], ["logo_url", nil], ["losses", 86], ["manager", "Manager 86"], ["mascot", nil], ["name", "Team 85"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 86.0], ["wins", 86]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 87], ["founded", 87], ["logo_url", nil], ["losses", 87], ["manager", "Manager 87"], ["mascot", nil], ["name", "Team 86"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 87.0], ["wins", 87]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 88], ["founded", 88], ["logo_url", nil], ["losses", 88], ["manager", "Manager 88"], ["mascot", nil], ["name", "Team 87"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 88.0], ["wins", 88]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 89], ["founded", 89], ["logo_url", nil], ["losses", 89], ["manager", "Manager 89"], ["mascot", nil], ["name", "Team 88"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 89.0], ["wins", 89]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 90], ["founded", 90], ["logo_url", nil], ["losses", 90], ["manager", "Manager 90"], ["mascot", nil], ["name", "Team 89"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 90.0], ["wins", 90]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 91], ["founded", 91], ["logo_url", nil], ["losses", 91], ["manager", "Manager 91"], ["mascot", nil], ["name", "Team 90"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 91.0], ["wins", 91]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 92], ["founded", 92], ["logo_url", nil], ["losses", 92], ["manager", "Manager 92"], ["mascot", nil], ["name", "Team 91"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 92.0], ["wins", 92]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 93], ["founded", 93], ["logo_url", nil], ["losses", 93], ["manager", "Manager 93"], ["mascot", nil], ["name", "Team 92"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 93.0], ["wins", 93]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 94], ["founded", 94], ["logo_url", nil], ["losses", 94], ["manager", "Manager 94"], ["mascot", nil], ["name", "Team 93"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 94.0], ["wins", 94]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 95], ["founded", 95], ["logo_url", nil], ["losses", 95], ["manager", "Manager 95"], ["mascot", nil], ["name", "Team 94"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 95.0], ["wins", 95]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 96], ["founded", 96], ["logo_url", nil], ["losses", 96], ["manager", "Manager 96"], ["mascot", nil], ["name", "Team 95"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 96.0], ["wins", 96]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 97], ["founded", 97], ["logo_url", nil], ["losses", 97], ["manager", "Manager 97"], ["mascot", nil], ["name", "Team 96"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 97.0], ["wins", 97]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 98], ["founded", 98], ["logo_url", nil], ["losses", 98], ["manager", "Manager 98"], ["mascot", nil], ["name", "Team 97"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 98.0], ["wins", 98]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 99], ["founded", 99], ["logo_url", nil], ["losses", 99], ["manager", "Manager 99"], ["mascot", nil], ["name", "Team 98"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 99.0], ["wins", 99]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 100], ["founded", 100], ["logo_url", nil], ["losses", 100], ["manager", "Manager 100"], ["mascot", nil], ["name", "Team 99"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 100.0], ["wins", 100]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.2ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61) Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, 84, 83, 82, 81)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 101], ["founded", 101], ["logo_url", nil], ["losses", 101], ["manager", "Manager 101"], ["mascot", nil], ["name", "Team 100"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 101.0], ["wins", 101]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1064 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1064"], ["notes", nil], ["number", 1064], ["position", "Position 1065"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1065 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1065"], ["notes", nil], ["number", 1065], ["position", "Position 1066"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1066 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1066"], ["notes", nil], ["number", 1066], ["position", "Position 1067"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1067 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1067"], ["notes", nil], ["number", 1067], ["position", "Position 1068"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1068 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1068"], ["notes", nil], ["number", 1068], ["position", "Position 1069"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1069 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1069"], ["notes", nil], ["number", 1069], ["position", "Position 1070"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1070 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1070"], ["notes", nil], ["number", 1070], ["position", "Position 1071"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1071 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1071"], ["notes", nil], ["number", 1071], ["position", "Position 1072"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1072 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1072"], ["notes", nil], ["number", 1072], ["position", "Position 1073"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1073 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1073"], ["notes", nil], ["number", 1073], ["position", "Position 1074"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1074 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1074"], ["notes", nil], ["number", 1074], ["position", "Position 1075"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1075 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1075"], ["notes", nil], ["number", 1075], ["position", "Position 1076"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1076 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1076"], ["notes", nil], ["number", 1076], ["position", "Position 1077"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1077 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1077"], ["notes", nil], ["number", 1077], ["position", "Position 1078"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1078 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1078"], ["notes", nil], ["number", 1078], ["position", "Position 1079"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1079 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1079"], ["notes", nil], ["number", 1079], ["position", "Position 1080"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1080 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1080"], ["notes", nil], ["number", 1080], ["position", "Position 1081"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1081 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1081"], ["notes", nil], ["number", 1081], ["position", "Position 1082"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1082 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1082"], ["notes", nil], ["number", 1082], ["position", "Position 1083"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1083 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1083"], ["notes", nil], ["number", 1083], ["position", "Position 1084"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1084 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1084"], ["notes", nil], ["number", 1084], ["position", "Position 1085"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1085 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1085"], ["notes", nil], ["number", 1085], ["position", "Position 1086"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1086 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1086"], ["notes", nil], ["number", 1086], ["position", "Position 1087"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1087 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1087"], ["notes", nil], ["number", 1087], ["position", "Position 1088"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1088 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1088"], ["notes", nil], ["number", 1088], ["position", "Position 1089"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1089 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1089"], ["notes", nil], ["number", 1089], ["position", "Position 1090"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1090 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1090"], ["notes", nil], ["number", 1090], ["position", "Position 1091"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1091 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1091"], ["notes", nil], ["number", 1091], ["position", "Position 1092"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1092 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1092"], ["notes", nil], ["number", 1092], ["position", "Position 1093"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1093 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1093"], ["notes", nil], ["number", 1093], ["position", "Position 1094"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1094 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1094"], ["notes", nil], ["number", 1094], ["position", "Position 1095"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1095 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1095"], ["notes", nil], ["number", 1095], ["position", "Position 1096"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1096 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1096"], ["notes", nil], ["number", 1096], ["position", "Position 1097"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1097 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1097"], ["notes", nil], ["number", 1097], ["position", "Position 1098"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1098 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1098"], ["notes", nil], ["number", 1098], ["position", "Position 1099"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1099 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1099"], ["notes", nil], ["number", 1099], ["position", "Position 1100"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1100 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1100"], ["notes", nil], ["number", 1100], ["position", "Position 1101"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1101 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1101"], ["notes", nil], ["number", 1101], ["position", "Position 1102"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1102 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1102"], ["notes", nil], ["number", 1102], ["position", "Position 1103"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1103 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1103"], ["notes", nil], ["number", 1103], ["position", "Position 1104"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 30 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 102], ["founded", 102], ["logo_url", nil], ["losses", 102], ["manager", "Manager 102"], ["mascot", nil], ["name", "Team 101"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 102.0], ["wins", 102]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1104 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1104"], ["notes", nil], ["number", 1104], ["position", "Position 1105"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1105 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1105"], ["notes", nil], ["number", 1105], ["position", "Position 1106"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1106 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1106"], ["notes", nil], ["number", 1106], ["position", "Position 1107"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1107 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1107"], ["notes", nil], ["number", 1107], ["position", "Position 1108"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 3  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 103], ["founded", 103], ["logo_url", nil], ["losses", 103], ["manager", "Manager 103"], ["mascot", nil], ["name", "Team 102"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 103.0], ["wins", 103]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "teams" SET "revenue" = 3.0, "updated_at" = '2012-06-29 19:10:00.689992' WHERE "teams"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1108 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1108"], ["notes", nil], ["number", 1108], ["position", "Position 1109"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1109 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1109"], ["notes", nil], ["number", 1109], ["position", "Position 1110"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1110 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1110"], ["notes", nil], ["number", 1110], ["position", "Position 1111"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1111 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1111"], ["notes", nil], ["number", 1111], ["position", "Position 1112"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.2ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1112 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1112"], ["notes", nil], ["number", 1112], ["position", "Position 1113"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 3  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 104], ["founded", 104], ["logo_url", nil], ["losses", 104], ["manager", "Manager 104"], ["mascot", nil], ["name", "Team 103"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 104.0], ["wins", 104]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1113 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1113"], ["notes", nil], ["number", 1113], ["position", "Position 1114"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1114 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1114"], ["notes", nil], ["number", 1114], ["position", "Position 1115"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 105], ["founded", 105], ["logo_url", nil], ["losses", 105], ["manager", "Manager 105"], ["mascot", nil], ["name", "Team 104"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 105.0], ["wins", 105]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1115 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1115"], ["notes", nil], ["number", 1115], ["position", "Position 1116"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1116 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1116"], ["notes", nil], ["number", 1116], ["position", "Position 1117"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1117 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1117"], ["notes", nil], ["number", 1117], ["position", "Position 1118"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "players" Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 106], ["founded", 106], ["logo_url", nil], ["losses", 106], ["manager", "Manager 106"], ["mascot", nil], ["name", "Team 105"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 106.0], ["wins", 106]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 107], ["founded", 107], ["logo_url", nil], ["losses", 107], ["manager", "Manager 107"], ["mascot", nil], ["name", "somewhere foos"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 107.0], ["wins", 107]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["custom_field", nil], ["division_id", 108], ["founded", 108], ["logo_url", nil], ["losses", 108], ["manager", "foo junior"], ["mascot", nil], ["name", "Team 106"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["win_percentage", 108.0], ["wins", 108]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE ((teams.name LIKE '%foo%') OR (teams.logo_url LIKE '%foo%') OR (teams.manager LIKE '%foo%') OR (teams.ballpark LIKE '%foo%') OR (teams.mascot LIKE '%foo%') OR (teams.color LIKE '%foo%') OR (teams.custom_field LIKE '%foo%')) Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE ((teams.name LIKE '%foo%') OR (teams.logo_url LIKE '%foo%') OR (teams.manager LIKE '%foo%') OR (teams.ballpark LIKE '%foo%') OR (teams.mascot LIKE '%foo%') OR (teams.color LIKE '%foo%') OR (teams.custom_field LIKE '%foo%'))  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:00 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_league_id", 1], ["name", "bar division"], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 109], ["founded", 109], ["logo_url", nil], ["losses", 109], ["manager", "Manager 108"], ["mascot", nil], ["name", "Team 107"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 109.0], ["wins", 109]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 1], ["founded", 110], ["logo_url", nil], ["losses", 110], ["manager", "Manager 109"], ["mascot", nil], ["name", "Team 108"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 110.0], ["wins", 110]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 1], ["founded", 111], ["logo_url", nil], ["losses", 111], ["manager", "Manager 110"], ["mascot", nil], ["name", "somewhere foos"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 111.0], ["wins", 111]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 110], ["founded", 112], ["logo_url", nil], ["losses", 112], ["manager", "Manager 111"], ["mascot", nil], ["name", "nowhere foos"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 112.0], ["wins", 112]]  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) SELECT "teams"."id" AS t0_r0, "teams"."created_at" AS t0_r1, "teams"."updated_at" AS t0_r2, "teams"."division_id" AS t0_r3, "teams"."name" AS t0_r4, "teams"."logo_url" AS t0_r5, "teams"."manager" AS t0_r6, "teams"."ballpark" AS t0_r7, "teams"."mascot" AS t0_r8, "teams"."founded" AS t0_r9, "teams"."wins" AS t0_r10, "teams"."losses" AS t0_r11, "teams"."win_percentage" AS t0_r12, "teams"."revenue" AS t0_r13, "teams"."color" AS t0_r14, "teams"."custom_field" AS t0_r15, "divisions"."custom_id" AS t1_r0, "divisions"."created_at" AS t1_r1, "divisions"."updated_at" AS t1_r2, "divisions"."custom_league_id" AS t1_r3, "divisions"."name" AS t1_r4 FROM "teams" LEFT OUTER JOIN "divisions" ON "divisions"."custom_id" = "teams"."division_id" WHERE (((teams.name LIKE '%foo%')) AND ((divisions.name LIKE '%bar%')))  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1118 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1118"], ["notes", nil], ["number", 1118], ["position", "Position 1119"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1119 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1119"], ["notes", nil], ["number", 1119], ["position", "Position 1120"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1120 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1120"], ["notes", nil], ["number", 1120], ["position", "Position 1121"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1121 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1121"], ["notes", nil], ["number", 1121], ["position", "Position 1122"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1122 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1122"], ["notes", nil], ["number", 1122], ["position", "Position 1123"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1123 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1123"], ["notes", nil], ["number", 1123], ["position", "Position 1124"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1124 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1124"], ["notes", nil], ["number", 1124], ["position", "Position 1125"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1125 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1125"], ["notes", nil], ["number", 1125], ["position", "Position 1126"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1126 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1126"], ["notes", nil], ["number", 1126], ["position", "Position 1127"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players"   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1127 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1127"], ["notes", nil], ["number", 1127], ["position", "Position 1128"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1128 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1128"], ["notes", nil], ["number", 1128], ["position", "Position 1129"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1129 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1129"], ["notes", nil], ["number", 1129], ["position", "Position 1130"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1130 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1130"], ["notes", nil], ["number", 1130], ["position", "Position 1131"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1131 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1131"], ["notes", nil], ["number", 1131], ["position", "Position 1132"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1132 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1132"], ["notes", nil], ["number", 1132], ["position", "Position 1133"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "players"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1133 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1133"], ["notes", nil], ["number", 1133], ["position", "Position 1134"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1134 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1134"], ["notes", nil], ["number", 1134], ["position", "Position 1135"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1135 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1135"], ["notes", nil], ["number", 1135], ["position", "Position 1136"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 0 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1136 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1136"], ["notes", nil], ["number", 1136], ["position", "Position 1137"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1137 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1137"], ["notes", nil], ["number", 1137], ["position", "Position 1138"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1138 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1138"], ["notes", nil], ["number", 1138], ["position", "Position 1139"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."name" = 'Player 1136'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1139 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1139"], ["notes", nil], ["number", 1139], ["position", "Position 1140"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1140 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1140"], ["notes", nil], ["number", 1140], ["position", "Position 1141"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1141 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1141"], ["notes", nil], ["number", 1141], ["position", "Position 1142"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY id asc  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1142 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1142"], ["notes", nil], ["number", 1142], ["position", "Position 1143"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1143 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1143"], ["notes", nil], ["number", 1143], ["position", "Position 1144"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1144 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1144"], ["notes", nil], ["number", 1144], ["position", "Position 1145"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1145 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1145"], ["notes", nil], ["number", 1145], ["position", "Position 1146"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1146 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1146"], ["notes", nil], ["number", 1146], ["position", "Position 1147"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1147 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1147"], ["notes", nil], ["number", 1147], ["position", "Position 1148"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE (((players.name LIKE 'Player 1146')))  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1148 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1148"], ["notes", nil], ["number", 1148], ["position", "Position 1149"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1149 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1149"], ["notes", nil], ["number", 1149], ["position", "Position 1150"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1150 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1150"], ["notes", nil], ["number", 1150], ["position", "Position 1151"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE ((players.name LIKE '%Player 1149%') OR (players.position LIKE '%Player 1149%') OR (players.notes LIKE '%Player 1149%'))  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1151 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1151"], ["notes", nil], ["number", 1151], ["position", "Position 1152"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1152 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1152"], ["notes", nil], ["number", 1152], ["position", "Position 1153"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1153 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1153"], ["notes", nil], ["number", 1153], ["position", "Position 1154"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "players" LIMIT 2) subquery_for_count  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1154 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1154"], ["notes", nil], ["number", 1154], ["position", "Position 1155"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1155 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1155"], ["notes", nil], ["number", 1155], ["position", "Position 1156"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1156 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1156"], ["notes", nil], ["number", 1156], ["position", "Position 1157"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY id desc LIMIT 1 OFFSET 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY id desc LIMIT 2 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.3ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1157 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1157"], ["notes", nil], ["number", 1157], ["position", "Position 1158"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1158 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1158"], ["notes", nil], ["number", 1158], ["position", "Position 1159"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1159 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1159"], ["notes", nil], ["number", 1159], ["position", "Position 1160"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1160 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1160"], ["notes", nil], ["number", 1160], ["position", "Position 1161"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1161 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1161"], ["notes", nil], ["number", 1161], ["position", "Position 1162"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1162 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1162"], ["notes", nil], ["number", 1162], ["position", "Position 1163"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.1ms) SELECT "players".* FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"   (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1163 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1163"], ["notes", nil], ["number", 1163], ["position", "Position 1164"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1164 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1164"], ["notes", nil], ["number", 1164], ["position", "Position 1165"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1165 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1165"], ["notes", nil], ["number", 1165], ["position", "Position 1166"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1166 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1166"], ["notes", nil], ["number", 1166], ["position", "Position 1167"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 111], ["founded", 113], ["logo_url", nil], ["losses", 113], ["manager", "Manager 112"], ["mascot", nil], ["name", "Team 109"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 113.0], ["wins", 113]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 112], ["founded", 114], ["logo_url", nil], ["losses", 114], ["manager", "Manager 113"], ["mascot", nil], ["name", "Team 110"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 114.0], ["wins", 114]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1167 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1167"], ["notes", nil], ["number", 1167], ["position", "Position 1168"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 4"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 4], ["pick", 4], ["player_id", 5], ["round", 4], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --8-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --9-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.372184' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.372784' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1163 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:10:01.374159' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/comment/export" for 127.0.0.1 at 2012-06-29 13:10:01 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:01.378210', "current_sign_in_at" = '2012-06-29 19:10:01.378210', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:01.378610', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"comment"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 65ms (Views: 47.1ms | ActiveRecord: 0.0ms) Started POST "/admin/comment/export?all=true" for 127.0.0.1 at 2012-06-29 13:10:01 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "content", "created_at", "updated_at"], "methods"=>["commentable_id", "commentable_type"]}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "csv"=>"", "all"=>"true", "model_name"=>"comment"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc LIMIT 1 CACHE (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.1ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Sent data (1.6ms) Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.3ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"   (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1168 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1168"], ["notes", nil], ["number", 1168], ["position", "Position 1169"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1169 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1169"], ["notes", nil], ["number", 1169], ["position", "Position 1170"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1170 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1170"], ["notes", nil], ["number", 1170], ["position", "Position 1171"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1171 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1171"], ["notes", nil], ["number", 1171], ["position", "Position 1172"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 113], ["founded", 115], ["logo_url", nil], ["losses", 115], ["manager", "Manager 114"], ["mascot", nil], ["name", "Team 111"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 115.0], ["wins", 115]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 114], ["founded", 116], ["logo_url", nil], ["losses", 116], ["manager", "Manager 115"], ["mascot", nil], ["name", "Team 112"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 116.0], ["wins", 116]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1172 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1172"], ["notes", nil], ["number", 1172], ["position", "Position 1173"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 5"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 5], ["pick", 5], ["player_id", 5], ["round", 5], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --10-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --11-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.491640' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.492379' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1168 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:10:01.493973' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:10:01 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:01.498186', "current_sign_in_at" = '2012-06-29 19:10:01.498186', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:01.498600', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 76ms (Views: 58.7ms | ActiveRecord: 0.0ms) Started POST "/admin/player/export?all=true" for 127.0.0.1 at 2012-06-29 13:10:01 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "created_at", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"], "include"=>{"team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color", "custom_field"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}}}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "xml"=>"", "all"=>"true", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Sent data player_2012-06-29_13h10m01.xml (0.4ms) Completed 200 OK in 23ms (Views: 0.3ms | ActiveRecord: 1.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"   (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1173 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1173"], ["notes", nil], ["number", 1173], ["position", "Position 1174"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1174 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1174"], ["notes", nil], ["number", 1174], ["position", "Position 1175"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1175 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1175"], ["notes", nil], ["number", 1175], ["position", "Position 1176"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1176 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1176"], ["notes", nil], ["number", 1176], ["position", "Position 1177"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 115], ["founded", 117], ["logo_url", nil], ["losses", 117], ["manager", "Manager 116"], ["mascot", nil], ["name", "Team 113"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 117.0], ["wins", 117]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 116], ["founded", 118], ["logo_url", nil], ["losses", 118], ["manager", "Manager 117"], ["mascot", nil], ["name", "Team 114"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 118.0], ["wins", 118]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1177 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1177"], ["notes", nil], ["number", 1177], ["position", "Position 1178"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 6"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 6], ["pick", 6], ["player_id", 5], ["round", 6], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --12-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --13-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.679022' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.679600' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1173 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:10:01.681109' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:10:01 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:01.685558', "current_sign_in_at" = '2012-06-29 19:10:01.685558', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:01.686055', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 73ms (Views: 55.9ms | ActiveRecord: 0.0ms) Started POST "/admin/player/export?all=true" for 127.0.0.1 at 2012-06-29 13:10:01 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "created_at", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"], "include"=>{"team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color", "custom_field"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}}}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "json"=>"", "all"=>"true", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Sent data player_2012-06-29_13h10m01.json (0.4ms) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.9ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.0ms) SELECT "comments".* FROM "comments"   (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1178 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1178"], ["notes", nil], ["number", 1178], ["position", "Position 1179"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1179 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1179"], ["notes", nil], ["number", 1179], ["position", "Position 1180"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1180 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1180"], ["notes", nil], ["number", 1180], ["position", "Position 1181"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1181 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1181"], ["notes", nil], ["number", 1181], ["position", "Position 1182"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 117], ["founded", 119], ["logo_url", nil], ["losses", 119], ["manager", "Manager 118"], ["mascot", nil], ["name", "Team 115"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 119.0], ["wins", 119]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 118], ["founded", 120], ["logo_url", nil], ["losses", 120], ["manager", "Manager 119"], ["mascot", nil], ["name", "Team 116"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 120.0], ["wins", 120]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1182 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1182"], ["notes", nil], ["number", 1182], ["position", "Position 1183"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 7"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 7], ["pick", 7], ["player_id", 5], ["round", 7], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --14-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --15-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.806046' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.806593' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1178 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:10:01.807862' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:10:01 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:01.815119', "current_sign_in_at" = '2012-06-29 19:10:01.815119', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:01.815565', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 71ms (Views: 53.1ms | ActiveRecord: 0.0ms) Started POST "/admin/player/export?all=true" for 127.0.0.1 at 2012-06-29 13:10:01 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"utf8"=>"✓", "send_data"=>"true", "schema"=>{"only"=>["id", "created_at", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"], "include"=>{"team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color", "custom_field"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}}}, "csv_options"=>{"encoding_to"=>"", "generator"=>{"col_sep"=>","}}, "return_to"=>"", "csv"=>"", "all"=>"true", "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 1 CACHE (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Sent data (0.4ms) Completed 200 OK in 28ms (Views: 0.3ms | ActiveRecord: 1.0ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments"  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1183 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1183"], ["notes", nil], ["number", 1183], ["position", "Position 1184"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1184 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1184"], ["notes", nil], ["number", 1184], ["position", "Position 1185"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1185 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1185"], ["notes", nil], ["number", 1185], ["position", "Position 1186"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1186 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1186"], ["notes", nil], ["number", 1186], ["position", "Position 1187"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 119], ["founded", 121], ["logo_url", nil], ["losses", 121], ["manager", "Manager 120"], ["mascot", nil], ["name", "Team 117"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 121.0], ["wins", 121]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["custom_field", nil], ["division_id", 120], ["founded", 122], ["logo_url", nil], ["losses", 122], ["manager", "Manager 121"], ["mascot", nil], ["name", "Team 118"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["win_percentage", 122.0], ["wins", 122]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1187 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1187"], ["notes", nil], ["number", 1187], ["position", "Position 1188"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 8"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 8], ["pick", 8], ["player_id", 5], ["round", 8], ["team_id", 2], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --16-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", nil], ["commentable_type", nil], ["content", " Lorém --17-- ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\n"], ["created_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.998253' WHERE "comments"."id" = 1  (0.1ms) UPDATE "comments" SET "commentable_id" = 1, "commentable_type" = 'Player', "updated_at" = '2012-06-29 19:10:01.998826' WHERE "comments"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1183 AND "players"."id" != 1 AND "players"."team_id" = 1) LIMIT 1  (0.1ms) UPDATE "players" SET "team_id" = 1, "updated_at" = '2012-06-29 19:10:02.000096' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/export?all=true&csv=true&csv_options%5Bgenerator%5D%5Bcol_sep%5D=%2C&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=id&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=content&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=created_at&schema%5Binclude%5D%5Bcomments%5D%5Bonly%5D%5B%5D=updated_at&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=id&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=created_at&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=updated_at&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=date&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=round&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=pick&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=overall&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=college&schema%5Binclude%5D%5Bdraft%5D%5Bonly%5D%5B%5D=notes&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=id&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=created_at&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=updated_at&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=name&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=logo_url&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=manager&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=ballpark&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=mascot&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=founded&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=wins&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=losses&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=win_percentage&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=revenue&schema%5Binclude%5D%5Bteam%5D%5Bonly%5D%5B%5D=color&schema%5Bonly%5D%5B%5D=id&schema%5Bonly%5D%5B%5D=updated_at&schema%5Bonly%5D%5B%5D=deleted_at&schema%5Bonly%5D%5B%5D=name&schema%5Bonly%5D%5B%5D=position&schema%5Bonly%5D%5B%5D=number&schema%5Bonly%5D%5B%5D=retired&schema%5Bonly%5D%5B%5D=injured&schema%5Bonly%5D%5B%5D=born_on&schema%5Bonly%5D%5B%5D=notes&schema%5Bonly%5D%5B%5D=suspended" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.006900', "current_sign_in_at" = '2012-06-29 19:10:02.006900', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.007402', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#export as HTML Parameters: {"all"=>"true", "csv"=>"true", "csv_options"=>{"generator"=>{"col_sep"=>","}}, "schema"=>{"include"=>{"comments"=>{"only"=>["id", "content", "created_at", "updated_at"]}, "draft"=>{"only"=>["id", "created_at", "updated_at", "date", "round", "pick", "overall", "college", "notes"]}, "team"=>{"only"=>["id", "created_at", "updated_at", "name", "logo_url", "manager", "ballpark", "mascot", "founded", "wins", "losses", "win_percentage", "revenue", "color"]}}, "only"=>["id", "updated_at", "deleted_at", "name", "position", "number", "retired", "injured", "born_on", "notes", "suspended"]}, "model_name"=>"player"}  (0.1ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 1 CACHE (0.0ms) SELECT COUNT(*) FROM "players"  Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" IN (1) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 5 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 5 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 4 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 4 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 3 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 3 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Completed 200 OK in 57ms (Views: 0.3ms | ActiveRecord: 0.9ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.076392', "current_sign_in_at" = '2012-06-29 19:10:02.076392', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.076751', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 404 Not Found in 61ms (Views: 39.0ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_field", nil], ["division_id", 121], ["founded", 123], ["logo_url", nil], ["losses", 123], ["manager", "Manager 122"], ["mascot", nil], ["name", "Team 119"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["win_percentage", 123.0], ["wins", 123]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1188 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1188"], ["notes", nil], ["number", 1188], ["position", "Position 1189"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 9"], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 9], ["pick", 9], ["player_id", 1], ["round", 9], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.151875', "current_sign_in_at" = '2012-06-29 19:10:02.151875', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.152268', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (5.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.4ms) Completed 200 OK in 54ms (Views: 35.0ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_field", nil], ["division_id", 122], ["founded", 124], ["logo_url", nil], ["losses", 124], ["manager", "Manager 123"], ["mascot", nil], ["name", "Team 120"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["win_percentage", 124.0], ["wins", 124]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1189 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1189"], ["notes", nil], ["number", 1189], ["position", "Position 1190"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 10"], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 10], ["pick", 10], ["player_id", 1], ["round", 10], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "comments" ("commentable_id", "commentable_type", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["commentable_id", 1], ["commentable_type", "Player"], ["content", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/delete" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.223665', "current_sign_in_at" = '2012-06-29 19:10:02.223665', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.224076', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#delete as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (6.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 200 OK in 48ms (Views: 29.3ms | ActiveRecord: 0.3ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1190 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1190"], ["notes", nil], ["number", 1190], ["position", "Position 1191"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1191 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1191"], ["notes", nil], ["number", 1191], ["position", "Position 1192"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1192 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1192"], ["notes", nil], ["number", 1192], ["position", "Position 1193"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.290148', "current_sign_in_at" = '2012-06-29 19:10:02.290148', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.290559', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 94ms (Views: 72.0ms | ActiveRecord: 0.4ms) Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=2&bulk_ids%5B%5D=1" for 127.0.0.1 at 2012-06-29 13:10:02 -0600 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "bulk_ids"=>["2", "1"], "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (2, 1) ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["item", 2], ["message", "Destroyed Player 1191"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["item", 1], ["message", "Destroyed Player 1190"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 9ms (ActiveRecord: 1.0ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:02 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 38ms (Views: 34.1ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players"  (0.0ms) SELECT COUNT(*) FROM "rails_admin_histories"  RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC RailsAdmin::History Load (0.1ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" ORDER BY id DESC  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1193 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1193"], ["notes", nil], ["number", 1193], ["position", "Position 1194"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1194 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1194"], ["notes", nil], ["number", 1194], ["position", "Position 1195"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1195 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1195"], ["notes", nil], ["number", 1195], ["position", "Position 1196"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.459025', "current_sign_in_at" = '2012-06-29 19:10:02.459025', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.459473', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 49ms (Views: 27.2ms | ActiveRecord: 0.4ms) Started DELETE "/admin/player/bulk_delete?bulk_ids%5B%5D=2&bulk_ids%5B%5D=1" for 127.0.0.1 at 2012-06-29 13:10:02 -0600 Processing by RailsAdmin::MainController#bulk_delete as HTML Parameters: {"utf8"=>"✓", "return_to"=>"", "_continue"=>"", "bulk_ids"=>["2", "1"], "model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Redirected to http://www.example.com/admin/player Filter chain halted as :check_for_cancel rendered or redirected Completed 302 Found in 3ms (ActiveRecord: 0.1ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:02 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 47ms (Views: 43.3ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "players"  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1196 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1196"], ["notes", nil], ["number", 1196], ["position", "Position 1197"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 SQL (0.0ms) DELETE FROM "players" WHERE "players"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_field", nil], ["division_id", 123], ["founded", 125], ["logo_url", nil], ["losses", 125], ["manager", "Manager 124"], ["mascot", nil], ["name", "Team 121"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["win_percentage", 125.0], ["wins", 125]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1197 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1197"], ["notes", nil], ["number", 1197], ["position", "Position 1198"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 11"], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 11], ["pick", 11], ["player_id", 1], ["round", 11], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 WARNING: Can't mass-assign protected attributes: suspended Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1198 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Stefan Kiszonka"], ["notes", nil], ["number", 1198], ["position", "Fifth baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.1ms) UPDATE "drafts" SET "player_id" = 2, "updated_at" = '2012-06-29 19:10:02.591894' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 2]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 WARNING: Can't mass-assign protected attributes: suspended  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 87 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Stefan Kiszonka"], ["notes", nil], ["number", 87], ["position", "Fifth baseman"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["name", "north"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_league_id", 1], ["name", "div 1"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["name", "south"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_league_id", 2], ["name", "div 2"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" IN (1, 2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["name", "Awesome League"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 3, "updated_at" = '2012-06-29 19:10:02.609754' WHERE "divisions"."custom_id" = 1  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 3, "updated_at" = '2012-06-29 19:10:02.610402' WHERE "divisions"."custom_id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = ? LIMIT 1 [["id", 3]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 3  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_field", nil], ["division_id", 124], ["founded", 126], ["logo_url", nil], ["losses", 126], ["manager", "Manager 125"], ["mascot", nil], ["name", "Team 122"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["win_percentage", 126.0], ["wins", 126]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1198 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1198"], ["notes", nil], ["number", 1198], ["position", "Position 1199"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 12"], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 12], ["pick", 12], ["player_id", 1], ["round", 12], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1199 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Stefan Koza"], ["notes", nil], ["number", 1199], ["position", "Position 1200"], ["retired", false], ["suspended", true], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["custom_field", nil], ["division_id", 125], ["founded", 127], ["logo_url", nil], ["losses", 127], ["manager", "Manager 126"], ["mascot", nil], ["name", "Team 123"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["win_percentage", 127.0], ["wins", 127]]  (0.0ms) RELEASE SAVEPOINT active_record_1 WARNING: Can't mass-assign protected attributes: suspended Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" IS NULL LIMIT 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "drafts" WHERE "drafts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1228 AND "players"."id" != 2 AND "players"."team_id" = 2) LIMIT 1  (0.1ms) UPDATE "players" SET "number" = 1228, "team_id" = 2, "updated_at" = '2012-06-29 19:10:02.626752' WHERE "players"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 2]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" WHERE "teams"."id" = 2 LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["name", "League 4"], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1200 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1199"], ["notes", nil], ["number", 1200], ["position", "Position 1201"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1201 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1200"], ["notes", nil], ["number", 1201], ["position", "Position 1202"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/admin/player/bulk_action?bulk_action=bulk_delete&bulk_ids%5B%5D=1&bulk_ids%5B%5D=2" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.648961', "current_sign_in_at" = '2012-06-29 19:10:02.648961', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.649384', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#bulk_action as HTML Parameters: {"bulk_action"=>"bulk_delete", "bulk_ids"=>["1", "2"], "model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" WHERE "players"."id" IN (1, 2) ORDER BY players.id desc LIMIT 20 OFFSET 0 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 2 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 2 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_delete_notice.html.haml (3.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.0ms) Completed 200 OK in 95ms (Views: 73.4ms | ActiveRecord: 0.4ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1202 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1201"], ["notes", nil], ["number", 1202], ["position", "Position 1203"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1203 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1202"], ["notes", nil], ["number", 1203], ["position", "Position 1204"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.760299', "current_sign_in_at" = '2012-06-29 19:10:02.760299', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.760690', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.3ms) Completed 200 OK in 69ms (Views: 47.4ms | ActiveRecord: 0.2ms) Started GET "/admin/player/export" for 127.0.0.1 at 2012-06-29 13:10:02 -0600 Processing by RailsAdmin::MainController#export as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.9ms) Completed 200 OK in 44ms (Views: 40.6ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 4370) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 4370], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 4003) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 4003], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 29904) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 29904], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.901372', "current_sign_in_at" = '2012-06-29 19:10:02.901372', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.901816', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 56ms (Views: 37.3ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 29227) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 29227], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 74587) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 74587], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 11802) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 11802], ["updated_at", Fri, 29 Jun 2012 19:10:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:02 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:02.977857', "current_sign_in_at" = '2012-06-29 19:10:02.977857', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:02.978261', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at asc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 102ms (Views: 83.9ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 74587) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 74587], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 11802) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 11802], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 88227) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 88227], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.102442', "current_sign_in_at" = '2012-06-29 19:10:03.102442', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.102889', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 58ms (Views: 38.7ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 86577) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 86577], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 51084) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 51084], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 28148) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 28148], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.197712', "current_sign_in_at" = '2012-06-29 19:10:03.197712', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.198275', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} Player Load (0.2ms) SELECT "players".* FROM "players" ORDER BY players.created_at desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 41ms (Views: 36.4ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."team_id" = 51583) LIMIT 1 SQL (0.5ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Jackie Robinson"], ["notes", nil], ["number", 42], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 51583], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 13 AND "players"."team_id" = 80180) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Deibinson Romero"], ["notes", nil], ["number", 13], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 80180], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 32 AND "players"."team_id" = 89465) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Sandy Koufax"], ["notes", nil], ["number", 32], ["position", nil], ["retired", false], ["suspended", false], ["team_id", 89465], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 28 Jun 2012 06:00:00 UTC +00:00], ["name", "American"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 27 Jun 2012 06:00:00 UTC +00:00], ["name", "Florida State"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 06:00:00 UTC +00:00], ["name", "National"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.278514', "current_sign_in_at" = '2012-06-29 19:10:03.278514', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.278995', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.2ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.created_at desc LIMIT 20 OFFSET 0 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 3 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 3 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.0ms) SELECT COUNT(*) FROM "leagues"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 48ms (Views: 43.2ms | ActiveRecord: 0.6ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:03 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 38ms (Views: 34.3ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["name", "League 5"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1204 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1203"], ["notes", nil], ["number", 1204], ["position", "Position 1205"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["name", "League 6"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1205 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1204"], ["notes", nil], ["number", 1205], ["position", "Position 1206"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.436357', "current_sign_in_at" = '2012-06-29 19:10:03.436357', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.436819', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 1 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.0ms) SELECT COUNT(*) FROM "leagues"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 62ms (Views: 42.1ms | ActiveRecord: 0.3ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:03 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 45ms (Views: 38.6ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["name", "League 7"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1206 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1205"], ["notes", nil], ["number", 1206], ["position", "Position 1207"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["name", "League 8"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1207 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1206"], ["notes", nil], ["number", 1207], ["position", "Position 1208"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.579513', "current_sign_in_at" = '2012-06-29 19:10:03.579513', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.580028', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 1 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.1ms) SELECT COUNT(*) FROM "leagues"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.0ms) Completed 200 OK in 44ms (Views: 39.9ms | ActiveRecord: 0.3ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:03 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 48ms (Views: 41.4ms | ActiveRecord: 0.3ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["name", "League 9"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1208 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1207"], ["notes", nil], ["number", 1208], ["position", "Position 1209"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["name", "League 10"], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1209 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1208"], ["notes", nil], ["number", 1209], ["position", "Position 1210"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/league" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.1ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.709735', "current_sign_in_at" = '2012-06-29 19:10:03.709735', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.710225', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"league"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" ORDER BY leagues.id desc LIMIT 1 OFFSET 0 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 2 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 2  (0.1ms) SELECT COUNT(*) FROM "leagues"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.9ms) Completed 200 OK in 95ms (Views: 89.8ms | ActiveRecord: 0.4ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:03 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 44ms (Views: 38.0ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.898975', "current_sign_in_at" = '2012-06-29 19:10:03.898975', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.899577', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 36ms (Views: 31.5ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:03 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:03 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:03.947741', "current_sign_in_at" = '2012-06-29 19:10:03.947741', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:03.948210', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 52ms (Views: 33.4ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.013212', "current_sign_in_at" = '2012-06-29 19:10:04.013212', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.013693', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 58ms (Views: 36.5ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.166825', "current_sign_in_at" = '2012-06-29 19:10:04.166825', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.167815', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.8ms) Completed 200 OK in 37ms (Views: 32.0ms | ActiveRecord: 0.2ms)  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.218100', "current_sign_in_at" = '2012-06-29 19:10:04.218100', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.218610', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.1ms) Completed 200 OK in 62ms (Views: 37.8ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["name", "Fan 2"], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["name", "Fan 3"], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.296316', "current_sign_in_at" = '2012-06-29 19:10:04.296316', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.296782', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.7ms) Completed 200 OK in 63ms (Views: 40.5ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["name", "Fan 4"], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["name", "Fan 5"], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.377370', "current_sign_in_at" = '2012-06-29 19:10:04.377370', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.377861', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 74ms (Views: 44.7ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.467165', "current_sign_in_at" = '2012-06-29 19:10:04.467165', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.467701', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.0ms) Completed 200 OK in 111ms (Views: 82.7ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.592964', "current_sign_in_at" = '2012-06-29 19:10:04.592964', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.593540', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.2ms) Completed 200 OK in 59ms (Views: 34.8ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.665716', "current_sign_in_at" = '2012-06-29 19:10:04.665716', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.666319', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 56ms (Views: 31.2ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["name", "Fan 6"], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["name", "Fan 7"], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.738555', "current_sign_in_at" = '2012-06-29 19:10:04.738555', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.738995', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 66ms (Views: 40.1ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["custom_field", nil], ["division_id", 126], ["founded", 128], ["logo_url", nil], ["losses", 128], ["manager", "Manager 127"], ["mascot", nil], ["name", "Team 124"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["win_percentage", 128.0], ["wins", 128]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1210 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1209"], ["notes", nil], ["number", 1210], ["position", "Position 1211"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1211 AND "players"."team_id" = 1) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1210"], ["notes", nil], ["number", 1211], ["position", "Position 1212"], ["retired", false], ["suspended", false], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.828497', "current_sign_in_at" = '2012-06-29 19:10:04.828497', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.829009', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."team_id" = 1 ORDER BY id  (0.1ms) SELECT COUNT(*) FROM "teams" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.1ms) Completed 200 OK in 63ms (Views: 36.6ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:04 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:04 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:04.989056', "current_sign_in_at" = '2012-06-29 19:10:04.989056', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:04.989559', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.7ms) Completed 200 OK in 36ms (Views: 32.1ms | ActiveRecord: 0.1ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.039938', "current_sign_in_at" = '2012-06-29 19:10:05.039938', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.040407', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 63ms (Views: 39.3ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.116804', "current_sign_in_at" = '2012-06-29 19:10:05.116804', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.117319', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.2ms) Completed 200 OK in 55ms (Views: 33.8ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.184737', "current_sign_in_at" = '2012-06-29 19:10:05.184737', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.185230', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 63ms (Views: 35.0ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["name", "Fan 8"], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "fans" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["name", "Fan 9"], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.268250', "current_sign_in_at" = '2012-06-29 19:10:05.268250', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.268757', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.5ms) Completed 200 OK in 66ms (Views: 42.6ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.1ms) SAVEPOINT active_record_1  (0.4ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.345971', "current_sign_in_at" = '2012-06-29 19:10:05.345971', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.346583', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 114ms (Views: 88.1ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.472723', "current_sign_in_at" = '2012-06-29 19:10:05.472723', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.473216', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.2ms) Completed 200 OK in 59ms (Views: 32.2ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.545342', "current_sign_in_at" = '2012-06-29 19:10:05.545342', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.545863', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.2ms) Completed 200 OK in 64ms (Views: 35.8ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.1ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.626113', "current_sign_in_at" = '2012-06-29 19:10:05.626113', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.626639', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.5ms) Completed 200 OK in 69ms (Views: 39.2ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.3ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.708401', "current_sign_in_at" = '2012-06-29 19:10:05.708401', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.708877', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (4.3ms) Completed 200 OK in 56ms (Views: 33.6ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/fan" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.775083', "current_sign_in_at" = '2012-06-29 19:10:05.775083', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.775460', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"fan"} Fan Load (0.1ms) SELECT "fans".* FROM "fans" ORDER BY fans.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "fans"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.8ms) Completed 200 OK in 103ms (Views: 83.5ms | ActiveRecord: 0.1ms)  (2.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["custom_field", nil], ["division_id", 127], ["founded", 129], ["logo_url", nil], ["losses", 129], ["manager", "Manager 128"], ["mascot", nil], ["name", "Team 125"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["win_percentage", 129.0], ["wins", 129]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/team" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.896516', "current_sign_in_at" = '2012-06-29 19:10:05.896516', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.896932', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"team"} Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "teams"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 51ms (Views: 32.4ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1212 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1211"], ["notes", nil], ["number", 1212], ["position", "Position 1213"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:05 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:05.976172', "current_sign_in_at" = '2012-06-29 19:10:05.976172', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:05.976575', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.2ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 86ms (Views: 67.2ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "position" = 'Second baseman', "number" = 42, "notes" = '', "updated_at" = '2012-06-29 19:10:06.080171' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["item", 1], ["message", "Changed name, position, number, notes"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player/1/edit?return_to= Completed 302 Found in 11ms (ActiveRecord: 0.9ms) Started GET "/admin/player/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:10:06 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.9ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 52ms (Views: 48.1ms | ActiveRecord: 0.5ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1213 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1212"], ["notes", nil], ["number", 1213], ["position", "Position 1214"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.149235', "current_sign_in_at" = '2012-06-29 19:10:06.149235', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.149672', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (52.1ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.1ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 132ms (Views: 113.7ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"a", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 0 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.6ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 406 Not Acceptable in 57ms (Views: 48.4ms | ActiveRecord: 0.8ms) Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1214 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1213"], ["notes", nil], ["number", 1214], ["position", "Position 1215"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.363087', "current_sign_in_at" = '2012-06-29 19:10:06.363087', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.363451', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams" Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.4ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts"  Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.7ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments" Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.4ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 91ms (Views: 71.1ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"", "position"=>"Position 1215", "number"=>"1214", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1214 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (3.0ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.6ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (2.8ms) Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (2.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 406 Not Acceptable in 103ms (Views: 94.4ms | ActiveRecord: 0.8ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1215 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1214"], ["notes", nil], ["number", 1215], ["position", "Position 1216"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["custom_field", nil], ["division_id", 128], ["founded", 130], ["logo_url", nil], ["losses", 130], ["manager", "Manager 129"], ["mascot", nil], ["name", "Team 126"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["win_percentage", 130.0], ["wins", 130]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1216 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1215"], ["notes", nil], ["number", 1216], ["position", "Position 1217"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 13"], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 13], ["pick", 13], ["player_id", 2], ["round", 13], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/player/1/edit?player%5Bdraft_id%5D=1&player%5Bname%5D=Jackie+Robinson&player%5Bnumber%5D=1217&player%5Bposition%5D=Second+baseman" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.582053', "current_sign_in_at" = '2012-06-29 19:10:06.582053', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.582468', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"player"=>{"draft_id"=>"1", "name"=>"Jackie Robinson", "number"=>"1217", "position"=>"Second baseman"}, "model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "drafts" SET "player_id" = 1, "updated_at" = '2012-06-29 19:10:06.608496' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1217 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "number" = 1217, "position" = 'Second baseman', "updated_at" = '2012-06-29 19:10:06.610171' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["item", 1], ["message", "Changed name, position, number"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 29ms (ActiveRecord: 0.8ms) Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1217 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1216"], ["notes", nil], ["number", 1217], ["position", "Position 1218"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "teams" ("ballpark", "color", "created_at", "custom_field", "division_id", "founded", "logo_url", "losses", "manager", "mascot", "name", "revenue", "updated_at", "win_percentage", "wins") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["ballpark", nil], ["color", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["custom_field", nil], ["division_id", 129], ["founded", 131], ["logo_url", nil], ["losses", 131], ["manager", "Manager 130"], ["mascot", nil], ["name", "Team 127"], ["revenue", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["win_percentage", 131.0], ["wins", 131]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.1ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1218 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1217"], ["notes", nil], ["number", 1218], ["position", "Position 1219"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "drafts" ("college", "created_at", "date", "notes", "overall", "pick", "player_id", "round", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["college", "College 14"], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["date", Fri, 22 Jun 2012 19:09:33 UTC +00:00], ["notes", nil], ["overall", 14], ["pick", 14], ["player_id", 2], ["round", 14], ["team_id", 1], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/player/1/edit?player%5Bdraft_id%5D=1&player%5Bname%5D=Jackie+Robinson&player%5Bnumber%5D=1219&player%5Bposition%5D=Second+baseman" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.628084', "current_sign_in_at" = '2012-06-29 19:10:06.628084', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.628569', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"player"=>{"draft_id"=>"1", "name"=>"Jackie Robinson", "number"=>"1219", "position"=>"Second baseman"}, "model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 1 LIMIT 1 Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "drafts" SET "player_id" = 1, "updated_at" = '2012-06-29 19:10:06.653934' WHERE "drafts"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1219 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "number" = 1219, "position" = 'Second baseman', "updated_at" = '2012-06-29 19:10:06.655557' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["item", 1], ["message", "Changed name, position, number"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 28ms (ActiveRecord: 0.8ms) Player Load (0.0ms) SELECT "players".* FROM "players" WHERE "players"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = ? LIMIT 1 [["id", 1]] Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 1219 AND "players"."team_id" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "players" ("born_on", "created_at", "deleted_at", "injured", "name", "notes", "number", "position", "retired", "suspended", "team_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["born_on", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["deleted_at", nil], ["injured", false], ["name", "Player 1218"], ["notes", nil], ["number", 1219], ["position", "Position 1220"], ["retired", false], ["suspended", false], ["team_id", nil], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.668138', "current_sign_in_at" = '2012-06-29 19:10:06.668138', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.668579', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "teams"  Team Load (0.1ms) SELECT "teams".* FROM "teams" ORDER BY teams.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (6.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_datetime.html.haml (1.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.3ms) Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SELECT COUNT(*) FROM "drafts" Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" ORDER BY drafts.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_select.html.haml (5.0ms) Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player'  (0.0ms) SELECT COUNT(*) FROM "comments"  Comment Load (0.0ms) SELECT "comments".* FROM "comments" ORDER BY comments.id desc Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_filtering_multiselect.html.haml (4.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.4ms) Completed 200 OK in 84ms (Views: 65.1ms | ActiveRecord: 0.6ms) Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "player"=>{"team_id"=>"", "name"=>"Jackie Robinson", "position"=>"Second baseman", "number"=>"42", "retired"=>"0", "injured"=>"0", "born_on"=>"", "notes"=>"", "draft_id"=>"", "comment_ids"=>["", ""]}, "return_to"=>"", "_save"=>"", "model_name"=>"player", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = 1 AND "comments"."commentable_type" = 'Player' Draft Load (0.0ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."id" = 0 LIMIT 1 Draft Load (0.1ms) SELECT "drafts".* FROM "drafts" WHERE "drafts"."player_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Player Exists (0.0ms) SELECT 1 AS one FROM "players" WHERE ("players"."number" = 42 AND "players"."id" != 1 AND "players"."team_id" IS NULL) LIMIT 1  (0.1ms) UPDATE "players" SET "name" = 'Jackie Robinson', "position" = 'Second baseman', "number" = 42, "notes" = '', "updated_at" = '2012-06-29 19:10:06.770912' WHERE "players"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["item", 1], ["message", "Changed name, position, number, notes"], ["table", "Player"], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/player Completed 302 Found in 11ms (ActiveRecord: 0.9ms) Started GET "/admin/player" for 127.0.0.1 at 2012-06-29 13:10:06 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"player"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "players"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.6ms) Completed 200 OK in 37ms (Views: 32.9ms | ActiveRecord: 0.3ms) Player Load (0.1ms) SELECT "players".* FROM "players" LIMIT 1  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/player/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.2ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.823777', "current_sign_in_at" = '2012-06-29 19:10:06.823777', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.824200', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"params"=>{"player"=>{"name"=>"Jackie Robinson", "number"=>"42", "position"=>"Second baseman"}}, "model_name"=>"player", "id"=>"1"} Player Load (0.1ms) SELECT "players".* FROM "players" WHERE "players"."id" = 1 LIMIT 1 Player Load (0.1ms) SELECT "players".* FROM "players" ORDER BY players.id desc LIMIT 20 OFFSET 0  (0.0ms) SELECT COUNT(*) FROM "players" Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.2ms) Completed 404 Not Found in 108ms (Views: 85.7ms | ActiveRecord: 0.2ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00], ["type", "Hardball"], ["updated_at", Fri, 29 Jun 2012 19:10:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:10:06 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:06.947959', "current_sign_in_at" = '2012-06-29 19:10:06.947959', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:06.948425', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.9ms) Completed 200 OK in 53ms (Views: 34.9ms | ActiveRecord: 0.1ms) Started PUT "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "ball"=>{"color"=>"cyan"}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "balls" SET "color" = 'cyan', "updated_at" = '2012-06-29 19:10:07.014459' WHERE "balls"."type" IN ('Hardball') AND "balls"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["item", 1], ["message", "Changed color"], ["table", "Ball"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/ball/1/edit?return_to= Completed 302 Found in 8ms (ActiveRecord: 0.7ms) Started GET "/admin/ball/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.5ms) Completed 200 OK in 29ms (Views: 25.4ms | ActiveRecord: 0.2ms) Hardball Load (0.2ms) SELECT "balls".* FROM "balls" WHERE "balls"."type" IN ('Hardball') AND "balls"."id" = ? LIMIT 1 [["id", 1]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username_33@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username_33@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/user/2/edit" for 127.0.0.1 at 2012-06-29 13:10:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:07.060845', "current_sign_in_at" = '2012-06-29 19:10:07.060845', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:07.061229', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"user", "id"=>"2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_file_upload.html.haml (0.6ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_text.html.haml (0.5ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.8ms) Completed 200 OK in 66ms (Views: 46.9ms | ActiveRecord: 0.1ms) Started PUT "/admin/user/2/edit" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "user"=>{"email"=>"username_33@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "roles"=>"['admin', 'user']"}, "return_to"=>"", "_save"=>"", "model_name"=>"user", "id"=>"2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "roles" = '--- - admin - user ', "updated_at" = '2012-06-29 19:10:07.144380' WHERE "users"."id" = 2 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["item", 2], ["message", "Changed roles"], ["table", "User"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/user Completed 302 Found in 16ms (ActiveRecord: 0.6ms) Started GET "/admin/user" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#index as HTML Parameters: {"model_name"=>"user"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY users.id desc LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "users"  Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.9ms) Completed 200 OK in 92ms (Views: 88.0ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "balls" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "black"], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["type", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:10:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:07.259263', "current_sign_in_at" = '2012-06-29 19:10:07.259263', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:07.259722', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"model_name"=>"ball", "id"=>"1"} Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.2ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.7ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (3.6ms) Completed 200 OK in 50ms (Views: 31.9ms | ActiveRecord: 0.1ms) Started PUT "/admin/ball/1/edit" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"utf8"=>"✓", "ball"=>{"color"=>"gray"}, "return_to"=>"", "_add_edit"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "balls" SET "color" = 'gray', "updated_at" = '2012-06-29 19:10:07.321708' WHERE "balls"."id" = 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["item", 1], ["message", "Changed color"], ["table", "Ball"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/ball/1/edit?return_to= Completed 302 Found in 8ms (ActiveRecord: 0.6ms) Started GET "/admin/ball/1/edit?return_to=" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"return_to"=>"", "model_name"=>"ball", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = 1 LIMIT 1 Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_form_field.html.haml (0.3ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms) Rendered /Users/sferik/Projects/Ruby/gems/rails_admin/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.8ms) Completed 200 OK in 29ms (Views: 24.9ms | ActiveRecord: 0.1ms) Ball Load (0.1ms) SELECT "balls".* FROM "balls" WHERE "balls"."id" = ? LIMIT 1 [["id", 1]]  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["name", "League 11"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["name", "league 1340997007.363947"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["custom_league_id", 2], ["name", "div 1340997007.363938"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["name", "league 1340997007.365848"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["custom_league_id", 3], ["name", "div 1340997007.3658419"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "leagues" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["name", "league 1340997007.367625"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "divisions" ("created_at", "custom_league_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["custom_league_id", 4], ["name", "div 1340997007.367619"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started PUT "/admin/league/1/edit?league%5Bdivision_ids%5D%5B%5D=1&league%5Bname%5D=National+League" for 127.0.0.1 at 2012-06-29 13:10:07 -0600  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "users" SET "last_sign_in_at" = '2012-06-29 19:10:07.370822', "current_sign_in_at" = '2012-06-29 19:10:07.370822', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-06-29 19:10:07.371265', "roles" = '--- [] ' WHERE "users"."id" = 1 [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"league"=>{"division_ids"=>["1"], "name"=>"National League"}, "model_name"=>"league", "id"=>"1"} League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1 Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "divisions" SET "custom_league_id" = 1, "updated_at" = '2012-06-29 19:10:07.395107' WHERE "divisions"."custom_id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "leagues" SET "name" = 'National League', "updated_at" = '2012-06-29 19:10:07.396244' WHERE "leagues"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["item", 1], ["message", "Added Divisions #1 associations, Changed name"], ["table", "League"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/league Completed 302 Found in 26ms (ActiveRecord: 0.7ms) League Load (0.0ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = ? LIMIT 1 [["id", 1]] Division Load (0.0ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_id" = ? LIMIT 1 [["custom_id", 1]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."item" = 1 ORDER BY id DESC Started PUT "/admin/league/1/edit?league%5Bdivision_ids%5D%5B%5D=" for 127.0.0.1 at 2012-06-29 13:10:07 -0600 Processing by RailsAdmin::MainController#edit as HTML Parameters: {"league"=>{"division_ids"=>[""]}, "model_name"=>"league", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 League Load (0.1ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = 1 LIMIT 1 Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 Team Load (0.1ms) SELECT "teams".* FROM "teams" INNER JOIN "divisions" ON "teams"."division_id" = "divisions"."custom_id" WHERE "divisions"."custom_league_id" = 1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "divisions" SET "custom_league_id" = NULL WHERE "divisions"."custom_league_id" = 1 AND "divisions"."custom_id" IN (1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "rails_admin_histories" ("created_at", "item", "message", "table", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["item", 1], ["message", "Removed Divisions #1 associations"], ["table", "League"], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["username", "username@example.com"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://www.example.com/admin/league Completed 302 Found in 9ms (ActiveRecord: 0.7ms) League Load (0.0ms) SELECT "leagues".* FROM "leagues" WHERE "leagues"."id" = ? LIMIT 1 [["id", 1]] Division Load (0.1ms) SELECT "divisions".* FROM "divisions" WHERE "divisions"."custom_league_id" = 1 RailsAdmin::History Load (0.2ms) SELECT "rails_admin_histories".* FROM "rails_admin_histories" WHERE "rails_admin_histories"."item" = 1 ORDER BY id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", Sun, 01 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", Mon, 02 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", Tue, 03 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", Wed, 04 Jan 2012], ["datetime_field", nil], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field BETWEEN '2012-01-02' AND '2012-01-03')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field BETWEEN '2012-01-02' AND '2012-01-02')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field >= '2012-01-03')))  (0.0ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field <= '2012-01-02')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.date_field BETWEEN '2012-01-02' AND '2012-01-02')))  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", nil], ["datetime_field", Mon, 02 Jan 2012 06:59:59 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", nil], ["datetime_field", Mon, 02 Jan 2012 07:00:00 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", nil], ["datetime_field", Wed, 04 Jan 2012 06:59:59 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "field_tests" ("boolean_field", "carrierwave_asset", "created_at", "date_field", "datetime_field", "decimal_field", "dragonfly_asset_name", "dragonfly_asset_uid", "float_field", "format", "integer_field", "paperclip_asset_file_name", "protected_field", "restricted_field", "string_field", "text_field", "time_field", "timestamp_field", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["boolean_field", nil], ["carrierwave_asset", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["date_field", nil], ["datetime_field", Wed, 04 Jan 2012 07:00:00 UTC +00:00], ["decimal_field", nil], ["dragonfly_asset_name", nil], ["dragonfly_asset_uid", nil], ["float_field", nil], ["format", nil], ["integer_field", nil], ["paperclip_asset_file_name", nil], ["protected_field", nil], ["restricted_field", nil], ["string_field", nil], ["text_field", nil], ["time_field", nil], ["timestamp_field", nil], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field BETWEEN '2012-01-02 07:00:00.000000' AND '2012-01-04 06:59:59.999999')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field BETWEEN '2012-01-02 07:00:00.000000' AND '2012-01-03 06:59:59.999999')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field >= '2012-01-03 07:00:00.000000')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field <= '2012-01-03 06:59:59.999999')))  (0.1ms) SELECT COUNT(*) FROM "field_tests" WHERE (((field_tests.datetime_field BETWEEN '2012-01-02 07:00:00.000000' AND '2012-01-03 06:59:59.999999')))  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'username@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("avatar_content_type", "avatar_file_name", "avatar_file_size", "avatar_updated_at", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "password_salt", "remember_created_at", "reset_password_sent_at", "reset_password_token", "roles", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["avatar_content_type", nil], ["avatar_file_name", nil], ["avatar_file_size", nil], ["avatar_updated_at", nil], ["created_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "username@example.com"], ["encrypted_password", "password"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["password_salt", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["roles", nil], ["sign_in_count", 0], ["updated_at", Fri, 29 Jun 2012 19:10:07 UTC +00:00]] [paperclip] Saving attachments.  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction